/* style/promotions.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--dark-bg-1); /* Inherited from shared.css, assuming it's dark */
    padding-top: 120px; /* Default for desktop to clear fixed header */
}

.page-promotions__hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #004d99);
    text-align: center;
    color: var(--text-light);
    padding-top: 180px; /* Ensure content is below fixed header on desktop */
}

.page-promotions__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-promotions__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.9;
}

.page-promotions__hero-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__hero-link:hover {
    color: #ffd966;
}

.page-promotions__cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ffcc00);
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-promotions__cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffcc00, var(--secondary-color));
}

.page-promotions__section {
    padding: 60px 20px;
    margin-bottom: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.page-promotions__overview-section {
    background-color: var(--dark-bg-1); /* Assume dark body bg, so overview section is dark */
    color: var(--text-light);
}

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

.page-promotions__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__overview-section .page-promotions__section-title {
    color: var(--secondary-color);
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.page-promotions__text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: #ffd966;
    text-decoration: underline;
}

.page-promotions__highlight-text {
    color: var(--secondary-color);
    font-weight: bold;
}

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

.page-promotions__card {
    background-color: #1a1a1a; /* Darker card background for dark section */
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-promotions__card-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-promotions__card-text {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
    opacity: 0.85;
}

.page-promotions__button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ffcc00);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: auto; /* Push button to bottom */
    border: none;
    text-align: center;
}

.page-promotions__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffcc00, var(--secondary-color));
}

.page-promotions__guide-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__guide-section .page-promotions__section-title {
    color: var(--secondary-color);
}

.page-promotions__guide-section .page-promotions__section-description {
    color: rgba(255, 255, 255, 0.9);
}

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

.page-promotions__step-card {
    background-color: #1a1a1a; /* Darker card background for dark section */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.page-promotions__step-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions__step-text {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.page-promotions__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-promotions__terms-info {
    background-color: #1a1a1a; /* Darker background for terms */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__terms-title {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
}

.page-promotions__terms-text {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-promotions__button--outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.page-promotions__button--outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.page-promotions__why-choose-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__why-choose-section .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__why-choose-section .page-promotions__section-description {
    color: var(--text-dark);
}

.page-promotions__why-list {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-promotions__why-list-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__why-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__why-item-title {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions__why-item-text {
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.7;
}

.page-promotions__faq-section {
    background-color: var(--dark-bg-1); /* Assume dark body bg, so FAQ section is dark */
    color: var(--text-light);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-promotions__faq-section .page-promotions__section-title {
    color: var(--secondary-color);
}

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

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a; /* Darker background for FAQ items */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions__faq-question:hover {
    background: #3a3a3a;
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--secondary-color);
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    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-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;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.85);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
    .page-promotions__step-title {
        font-size: 1.6em;
    }
    .page-promotions__terms-title {
        font-size: 1.8em;
    }
    .page-promotions__why-item-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        padding-top: 100px !important; /* Mobile padding to clear fixed header */
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-banner {
        padding-top: 140px !important; /* Mobile specific padding for hero */
        padding-bottom: 40px;
    }
    .page-promotions__hero-image {
        border-radius: 8px;
        margin-bottom: 30px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-promotions__cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 15px;
        margin-bottom: 20px;
    }
    .page-promotions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-promotions__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-promotions__grid {
        gap: 20px;
    }
    .page-promotions__card {
        border-radius: 8px;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__card-content {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    .page-promotions__card-text {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
    .page-promotions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__steps-grid {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .page-promotions__step-card {
        padding: 25px;
        border-radius: 8px;
    }
    .page-promotions__step-title {
        font-size: 1.4em;
        margin-bottom: 10px;
    }
    .page-promotions__step-text {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .page-promotions__terms-info {
        padding: 30px 25px;
        border-radius: 8px;
    }
    .page-promotions__terms-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-promotions__terms-text {
        font-size: 0.95em;
        margin-bottom: 10px;
    }
    .page-promotions__button--outline {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__why-list {
        margin-top: 30px;
        gap: 20px;
    }
    .page-promotions__why-list-item {
        padding: 25px;
        border-radius: 8px;
    }
    .page-promotions__why-item-title {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    .page-promotions__why-item-text {
        font-size: 0.9em;
    }
    .page-promotions__faq-list {
        margin-top: 30px;
    }
    .page-promotions__faq-item {
        border-radius: 8px;
    }
    .page-promotions__faq-question {
        padding: 15px 20px;
    }
    .page-promotions__faq-question h3 {
        font-size: 1em;
    }
    .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;
    }

    /* Ensure all images are responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}