/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: #000; /* Assuming body is dark */
}

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

.page-promotions__intro-section {
    position: relative;
    width: 100%;
    padding: 60px 0 80px; /* Adjusted padding-top for fixed header */
    background: linear-gradient(135deg, #0d0d0d, #000000);
    text-align: center;
}

@media (max-width: 768px) {
  .page-promotions__intro-section {
    padding-top: 50px; /* Adjusted for mobile fixed header */
  }
}

.page-promotions__main-title {
    font-size: 42px;
    font-weight: 700;
    color: #FFD700; /* Gold color for main title */
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-promotions__intro-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-promotions__intro-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__intro-text a:hover {
    text-decoration: underline;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black text for contrast */
    border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 10px;
}

.page-promotions__section {
    padding: 80px 0;
    background-color: #000000;
}

.page-promotions__section--highlight {
    background-color: #0d0d0d; /* Slightly lighter dark background */
}

.page-promotions__section--dark {
    background-color: #1a1a1a;
}

.page-promotions__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-promotions__section-description {
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #cccccc;
}

.page-promotions__section-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__section-description a:hover {
    text-decoration: underline;
}

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

.page-promotions__card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #f0f0f0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__card--dark {
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.page-promotions__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promotions__card-title {
    font-size: 24px;
    font-weight: 600;
    color: #FFD700;
    padding: 20px 25px 10px;
}

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

.page-promotions__card-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__card-text a:hover {
    text-decoration: underline;
}

.page-promotions__card .page-promotions__btn {
    margin: 0 25px 25px;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 900px;
    color: #cccccc;
    font-size: 17px;
}

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

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

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

.page-promotions__feature-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    font-size: 16px;
    color: #cccccc;
}

.page-promotions__feature-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__feature-text a:hover {
    text-decoration: underline;
}

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

.page-promotions__cta-text {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions__cta-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__cta-text a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    background-color: #1a1a1a;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1a1a1a;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

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

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #f0f0f0;
    pointer-events: none;
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: #ffffff;
    transform: rotate(45deg); /* Change to '-' visually */
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important; /* Ensure enough height for content */
    padding: 20px 25px !important;
    opacity: 1;
    background: #0d0d0d;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions__faq-answer p {
    margin: 0;
    font-size: 16px;
    color: #cccccc;
}

.page-promotions__faq-answer p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__faq-answer p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 38px;
    }
    .page-promotions__section-title {
        font-size: 32px;
    }
    .page-promotions__cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__card-image-wrapper {
        height: 220px;
    }
    .page-promotions__card-title {
        font-size: 22px;
    }
    .page-promotions__feature-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions__intro-section, .page-promotions__section, .page-promotions__faq-section {
        padding: 40px 0;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__main-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .page-promotions__intro-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }
    .page-promotions__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-promotions__section-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .page-promotions__cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__card-image-wrapper {
        height: 180px;
    }
    .page-promotions__card-title {
        font-size: 20px;
        padding: 15px 20px 8px;
    }
    .page-promotions__card-text {
        font-size: 15px;
        padding: 0 20px 15px;
    }
    .page-promotions__card .page-promotions__btn {
        margin: 0 20px 20px;
    }
    .page-promotions__terms-list {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .page-promotions__terms-list li {
        padding: 12px 15px;
    }
    .page-promotions__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__feature-item {
        padding: 25px;
    }
    .page-promotions__feature-title {
        font-size: 19px;
    }
    .page-promotions__feature-text {
        font-size: 15px;
    }
    .page-promotions__cta-bottom {
        margin-top: 40px;
    }
    .page-promotions__cta-text {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 18px;
    }
    .page-promotions__faq-list {
        margin-top: 25px;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
    }
    .page-promotions__faq-question h3 {
        font-size: 16px;
    }
    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-promotions__faq-answer {
        padding: 0 20px;
    }
    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px 20px !important;
    }
    .page-promotions__faq-answer p {
        font-size: 15px;
    }
}

/* Ensure all images are responsive and do not overflow */
.page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile-specific image container adjustments */
@media (max-width: 768px) {
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__card-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* padding-left and padding-right are handled by .page-promotions__container */
    }
}