/* style/promotions.css */

/* General Page Styles */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

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

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__text-content {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A2463, #34495e);
    padding: 100px 0 60px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-promotions__btn--secondary:hover {
    background-color: #071a47;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Why Choose Section */
.page-promotions__why-choose {
    background-color: #fff;
}

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

.page-promotions__features-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.page-promotions__feature-icon {
    color: #0A2463;
    font-size: 1.5em;
    margin-right: 10px;
    font-weight: bold;
}

/* Current Offers Grid */
.page-promotions__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__offer-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.page-promotions__offer-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-promotions__offer-title a {
    color: #0A2463;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__offer-title a:hover {
    color: #FFD700;
}

.page-promotions__offer-description {
    color: #666;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__offer-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* How to Claim Section */
.page-promotions__how-to-claim .page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-promotions__how-to-claim .page-promotions__steps-list li {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.page-promotions__step-number {
    background-color: #0A2463;
    color: #FFD700;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-promotions__how-to-claim .page-promotions__link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__how-to-claim .page-promotions__link:hover {
    color: #FFD700;
}

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

/* Terms and Conditions Section */
.page-promotions__terms-conditions .page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.page-promotions__terms-conditions .page-promotions__terms-list li {
    margin-bottom: 15px;
    font-size: 1em;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.page-promotions__term-icon {
    color: #0A2463;
    font-size: 1.2em;
    margin-right: 10px;
    font-weight: bold;
    line-height: 1.6;
}

/* FAQ Section */
.page-promotions__faq-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.page-promotions__faq-answer {
    font-size: 1em;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none;
}

.page-promotions__faq-answer.active {
    display: block;
}

/* Final CTA Section */
.page-promotions__final-cta-section {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
}

.page-promotions__final-cta-section .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__final-cta-section .page-promotions__text-content {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__offer-card {
        padding: 20px;
    }
    .page-promotions__offer-title {
        font-size: 1.5em;
    }
    .page-promotions__offer-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn--secondary {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__offer-card {
        margin: 0 10px;
    }
}