/* style/promotions.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --section-bg: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--section-bg);
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-promotions__hero-content {
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    color: var(--gold-color);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    /* Using clamp for responsive font size, but not strictly required */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-promotions__cta-button--primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
}

.page-promotions__cta-button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__cta-button--secondary {
    background: none;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--text-main);
}

.page-promotions__cta-button--contact {
    background: var(--deep-green);
    color: var(--text-main);
    border: none;
}

.page-promotions__cta-button--contact:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 75, 44, 0.4);
}

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

.page-promotions__dark-section {
    background-color: var(--section-bg);
    color: var(--text-main);
}

.page-promotions__why-choose-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.page-promotions__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-promotions__featured-promos-section {
    padding: 80px 0;
    background-color: var(--background-color, #08160F);
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
}

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

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

.page-promotions__promo-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__promo-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promotions__promo-details li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-promotions__promo-details li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-promotions__guide-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

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

.page-promotions__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--button-gradient);
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-promotions__step-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-promotions__step-link:hover {
    color: var(--glow-color);
}

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: var(--background-color, #08160F);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__terms-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-promotions__terms-subtitle {
    font-size: 1.3rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__terms-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-promotions__faq-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-promotions__faq-question:hover {
    background-color: rgba(10, 75, 44, 0.8);
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-question::marker {
    display: none;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    color: var(--gold-color);
}

.page-promotions__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-promotions__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--card-bg);
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
    max-height: 500px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
    background-color: var(--deep-green);
}

.page-promotions__conclusion-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-color, #08160F);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        margin-top: 30px;
    }
    .page-promotions__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-promotions__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-promotions__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-promotions__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__cta-button + .page-promotions__cta-button {
        margin-top: 15px; /* For stacked buttons */
    }

    .page-promotions__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .page-promotions__why-choose-section,
    .page-promotions__featured-promos-section,
    .page-promotions__guide-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__conclusion-section {
        padding: 50px 0;
    }

    .page-promotions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__feature-grid,
    .page-promotions__promo-grid,
    .page-promotions__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promotions__promo-image {
        height: 200px;
    }

    .page-promotions__promo-title {
        font-size: 1.4rem;
    }

    .page-promotions__promo-text,
    .page-promotions__promo-details li,
    .page-promotions__feature-text,
    .page-promotions__step-text,
    .page-promotions__terms-item p,
    .page-promotions__faq-answer p {
        font-size: 0.95rem;
    }

    .page-promotions__step-title {
        font-size: 1.25rem;
    }

    .page-promotions__terms-subtitle {
        font-size: 1.15rem;
    }

    .page-promotions__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-promotions__faq-toggle {
        font-size: 1.5rem;
    }
    .page-promotions__faq-answer {
        padding: 0 20px 15px;
    }

    /* Image responsive force */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__hero-image-wrapper,
    .page-promotions__promo-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Video responsive force (if any, though not explicitly in this HTML) */
    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Button container for multiple buttons (e.g., in hero or guide) */
    .page-promotions__button-group, .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }
    .page-promotions__hero-content {
        padding: 0 10px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-promotions__hero-description {
        font-size: 0.9rem;
    }
    .page-promotions__cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    }
    .page-promotions__feature-card,
    .page-promotions__promo-card,
    .page-promotions__step-item,
    .page-promotions__terms-item,
    .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__feature-title,
    .page-promotions__promo-title,
    .page-promotions__step-title,
    .page-promotions__terms-subtitle,
    .page-promotions__faq-qtext {
        font-size: 1.1rem;
    }
    .page-promotions__faq-question {
        padding: 12px 15px;
        font-size: 1rem;
    }
    .page-promotions__faq-toggle {
        font-size: 1.3rem;
    }
    .page-promotions__faq-answer {
        padding: 0 15px 10px;
    }
}