/* style/promotions.css */
:root {
    --primary-color: #0A1931; /* Deep Navy Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #FFFFFF;
    --text-dark: #0A1931;
    --background-light: #F8F8F8;
    --background-dark: #1A2A44;
    --border-color: #3A4A64;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

.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-child(even) {
    background-color: #FFFFFF;
}

.page-promotions h1,
.page-promotions h2,
.page-promotions h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions h1 {
    font-size: 3em;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions h2 {
    font-size: 2.5em;
    margin-top: 40px;
}

.page-promotions h3 {
    font-size: 1.8em;
    color: var(--primary-color);
}

.page-promotions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-promotions .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions .btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions .btn-small:hover {
    background: #0D2447; /* Slightly darker primary */
    transform: translateY(-1px);
}

/* Hero Banner Section */
.page-promotions .hero-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions .hero-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions .hero-banner .hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-promotions .hero-banner h1 {
    color: var(--secondary-color);
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-promotions .hero-banner p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-promotions .hero-banner .hero-image {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions .hero-banner .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-promotions .intro-section {
    background-color: var(--background-light);
    padding: 80px 0;
}

.page-promotions .intro-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #555;
}

/* Promotions Grid */
.page-promotions .promotions-grid {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.page-promotions .promotions-grid h2 {
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.page-promotions .promotion-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions .promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions .promotion-card img {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions .promotion-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions .promotion-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions .promotion-card h3 a:hover {
    color: var(--secondary-color);
}

.page-promotions .promotion-card p {
    font-size: 1em;
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* How to Claim Section */
.page-promotions .how-to-claim {
    background-color: var(--background-light);
    padding: 80px 0;
}

.page-promotions .how-to-claim h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.page-promotions .how-to-claim ol {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-promotions .how-to-claim ol li {
    background-color: #FFFFFF;
    border-left: 5px solid var(--secondary-color);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-promotions .how-to-claim ol li strong {
    color: var(--primary-color);
}

.page-promotions .how-to-claim ol li a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions .how-to-claim ol li a:hover {
    color: var(--secondary-color);
}

/* Terms & Conditions Section */
.page-promotions .terms-conditions {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 80px 0;
}

.page-promotions .terms-conditions h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.page-promotions .terms-conditions p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #E0E0E0;
}

.page-promotions .terms-conditions ul {
    list-style: disc;
    padding-left: 20px;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: left;
    color: #E0E0E0;
}

.page-promotions .terms-conditions ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions .terms-conditions a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions .terms-conditions a:hover {
    color: #FFC107;
}

/* Why Choose Section */
.page-promotions .why-choose {
    background-color: var(--background-light);
    padding: 80px 0;
}

.page-promotions .why-choose h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.page-promotions .why-choose ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-promotions .why-choose ul li {
    background-color: #FFFFFF;
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 1.1em;
    color: var(--text-dark);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions .why-choose ul li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-promotions .faq-section {
    background-color: var(--background-dark);
    padding: 80px 0;
}

.page-promotions .faq-section h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.page-promotions .faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-promotions .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.page-promotions .faq-item:not(.active) .faq-question {
    border-radius: 8px;
}

.page-promotions .faq-question:hover {
    background-color: #1A2A44;
}

.page-promotions .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-light);
}

.page-promotions .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-promotions .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-promotions .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
    border-radius: 0 0 8px 8px;
}

.page-promotions .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

.page-promotions .faq-answer p {
    margin-bottom: 0;
    font-size: 1.05em;
    text-align: left;
}

.page-promotions .faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions .faq-answer a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .hero-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions .hero-banner .hero-content,
    .page-promotions .hero-banner .hero-image {
        min-width: unset;
        width: 100%;
    }

    .page-promotions .hero-banner .hero-content {
        text-align: center;
    }

    .page-promotions .hero-banner h1 {
        font-size: 2.8em;
    }

    .page-promotions h2 {
        font-size: 2em;
    }

    .page-promotions h3 {
        font-size: 1.6em;
    }

    .page-promotions section {
        padding: 50px 0;
    }

    .page-promotions .promotions-grid .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions .hero-banner h1 {
        font-size: 2.2em;
    }

    .page-promotions .hero-banner p {
        font-size: 1em;
    }

    .page-promotions .cta-button {
        padding: 12px 30px;
        font-size: 1.05em;
    }

    .page-promotions h2 {
        font-size: 1.8em;
    }

    .page-promotions h3 {
        font-size: 1.4em;
    }

    .page-promotions p,
    .page-promotions ol li,
    .page-promotions ul li {
        font-size: 0.95em;
    }

    .page-promotions .faq-question {
        padding: 15px 20px;
    }

    .page-promotions .faq-question h3 {
        font-size: 1.1em;
    }

    .page-promotions .faq-toggle {
        font-size: 1.8em;
    }

    .page-promotions .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions .hero-banner h1 {
        font-size: 1.8em;
    }

    .page-promotions h2 {
        font-size: 1.5em;
    }

    .page-promotions h3 {
        font-size: 1.2em;
    }

    .page-promotions .cta-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }

    .page-promotions .promotions-grid .grid-container {
        grid-template-columns: 1fr;
    }

    .page-promotions .faq-question h3 {
        font-size: 1em;
    }
}