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

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

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

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

.page-promotions h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-promotions h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.page-promotions h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-promotions h3 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

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

.page-promotions .btn-primary, .page-promotions .btn-cta {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
    white-space: nowrap;
}

.page-promotions .btn-primary:hover, .page-promotions .btn-cta:hover {
    background-color: #0056b3; /* Darker shade of primary */
    transform: translateY(-2px);
}

.page-promotions .btn-cta.large {
    padding: 18px 40px;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Hero Section */
.page-promotions .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.page-promotions .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-promotions .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions .hero-content p {
    color: var(--bg-light);
    font-size: 1.2em;
    margin-bottom: 25px;
}

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

.page-promotions .cta-button:hover {
    background: #e0a800; /* Darker secondary */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Promotion Overview */
.page-promotions .promotion-overview {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

/* Promotion Types Grid */
.page-promotions .promotion-types {
    padding: 60px 0;
    background-color: var(--text-light);
}

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

.page-promotions .promo-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-promotions .promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions .promo-card h3 {
    font-size: 1.6em;
    margin-top: 0;
    padding: 0 15px;
    color: var(--primary-color);
}

.page-promotions .promo-card h3 a {
    color: var(--primary-color);
}

.page-promotions .promo-card p {
    font-size: 1em;
    padding: 0 15px;
    flex-grow: 1;
}

.page-promotions .promo-card .btn-primary {
    margin-top: auto;
    margin-left: 15px;
    margin-right: 15px;
}

/* Claim Guide */
.page-promotions .claim-guide {
    padding: 60px 0;
    background-color: #eaf4ff; /* Light blue background */
}

.page-promotions .claim-guide ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-promotions .claim-guide ol li {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

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

/* Terms and Conditions */
.page-promotions .terms-conditions {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-promotions .terms-conditions ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
}

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

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

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

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

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
    color: var(--text-dark);
}

/* Conclusion CTA */
.page-promotions .conclusion-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    text-align: center;
    color: var(--text-light);
}

.page-promotions .conclusion-cta h2 {
    color: var(--text-light);
    font-size: 2.5em;
}

.page-promotions .conclusion-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions .conclusion-cta .btn-cta {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.page-promotions .conclusion-cta .btn-cta:hover {
    background: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions h1 {
        font-size: 2.2em;
    }
    .page-promotions h2 {
        font-size: 1.8em;
    }
    .page-promotions h3 {
        font-size: 1.5em;
    }
    .page-promotions p {
        font-size: 1em;
    }
    .page-promotions .hero-content p {
        font-size: 1.1em;
    }
    .page-promotions .cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }
    .page-promotions .promo-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions .btn-cta.large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions .hero-section {
        padding: 40px 15px;
    }
    .page-promotions .hero-image {
        margin-bottom: 20px;
    }
    .page-promotions h1 {
        font-size: 1.8em;
    }
    .page-promotions h2 {
        font-size: 1.6em;
    }
    .page-promotions h3 {
        font-size: 1.3em;
    }
    .page-promotions .promotion-overview, .page-promotions .promotion-types, .page-promotions .claim-guide, .page-promotions .terms-conditions, .page-promotions .faq-section, .page-promotions .conclusion-cta {
        padding: 40px 0;
    }
    .page-promotions .promo-card-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions .promo-img {
        height: 180px;
    }
    .page-promotions .btn-primary, .page-promotions .btn-cta {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions .claim-guide ol, .page-promotions .terms-conditions ul {
        padding-left: 20px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions h1 {
        font-size: 1.5em;
    }
    .page-promotions h2 {
        font-size: 1.4em;
    }
    .page-promotions .cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }
    .page-promotions .hero-content p {
        font-size: 0.95em;
    }
    .page-promotions .promo-card h3 {
        font-size: 1.4em;
    }
    .page-promotions .btn-cta.large {
        font-size: 1em;
        padding: 12px 25px;
    }
}