/* style/promotions-referral-program.css */

/* General Styling */
.page-promotions-referral-program {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark text on light background */
    background-color: #f8f9fa; /* Light background */
}

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

.page-promotions-referral-program .section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-referral-program .section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-promotions-referral-program .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-promotions-referral-program .btn-primary {
    background-color: #007bff; /* Primary color */
    color: #ffffff; /* White text on primary background */
    border: 1px solid #007bff;
}

.page-promotions-referral-program .btn-primary:hover {
    background-color: #0056b3; /* Darker primary on hover */
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions-referral-program .btn-secondary {
    background-color: #28a745; /* Secondary color */
    color: #ffffff; /* White text on secondary background */
    border: 1px solid #28a745;
}

.page-promotions-referral-program .btn-secondary:hover {
    background-color: #1e7e34; /* Darker secondary on hover */
    border-color: #1e7e34;
    transform: translateY(-2px);
}

.page-promotions-referral-program .link-highlight {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-referral-program .link-highlight:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Hero Section */
.page-promotions-referral-program__hero {
    background: linear-gradient(135deg, #007bff, #28a745); /* Gradient background with primary and secondary */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-promotions-referral-program__hero .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff; /* White text on dark gradient background */
}

.page-promotions-referral-program__hero .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-promotions-referral-program__hero .hero-cta {
    padding: 15px 35px;
    font-size: 1.2em;
    background-color: #ff8400; /* Complementary color for strong CTA */
    border-color: #ff8400;
    color: #ffffff;
}

.page-promotions-referral-program__hero .hero-cta:hover {
    background-color: #e67500;
    border-color: #e67500;
}

/* About Section */
.page-promotions-referral-program__about {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-promotions-referral-program__about .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-referral-program__about .text-content {
    flex: 2;
    min-width: 300px;
}

.page-promotions-referral-program__about .image-content {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.page-promotions-referral-program__about .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-referral-program__about ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

.page-promotions-referral-program__about ul li {
    margin-bottom: 10px;
}

/* How It Works Section */
.page-promotions-referral-program__how-it-works {
    padding: 60px 0;
    background-color: #f1f8ff; /* Light blue background for contrast */
}

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

.page-promotions-referral-program__how-it-works .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-referral-program__how-it-works .step-item:hover {
    transform: translateY(-5px);
}

.page-promotions-referral-program__how-it-works .step-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-promotions-referral-program__how-it-works .step-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-referral-program__how-it-works .step-description {
    color: #666;
}

/* Benefits Section */
.page-promotions-referral-program__benefits {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-promotions-referral-program__benefits .benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #28a745; /* Highlight with secondary color */
}

.page-promotions-referral-program__benefits .benefit-item:hover {
    transform: translateY(-5px);
}

.page-promotions-referral-program__benefits .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-promotions-referral-program__benefits .benefit-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-referral-program__benefits .benefit-description {
    color: #666;
}

/* Terms Section */
.page-promotions-referral-program__terms {
    padding: 60px 0;
    background-color: #f1f8ff;
}

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

.page-promotions-referral-program__terms .term-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-referral-program__terms .term-title {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-referral-program__terms .term-item ul {
    list-style: inside disc;
    padding-left: 0;
    color: #555;
}

.page-promotions-referral-program__terms .term-item ul li {
    margin-bottom: 8px;
}

.page-promotions-referral-program__terms .terms-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

/* Tips Section */
.page-promotions-referral-program__tips {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-promotions-referral-program__tips .tip-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 5px solid #007bff; /* Highlight with primary color */
}

.page-promotions-referral-program__tips .tip-item:hover {
    transform: translateY(-5px);
}

.page-promotions-referral-program__tips .tip-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
}

.page-promotions-referral-program__tips .tip-title {
    font-size: 1.4em;
    color: #28a745;
    margin-bottom: 15px;
}

.page-promotions-referral-program__tips .tip-description {
    color: #666;
}

/* FAQ Section */
.page-promotions-referral-program__faq {
    padding: 60px 0;
    background-color: #f1f8ff;
}

.page-promotions-referral-program__faq .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-referral-program__faq .accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-referral-program__faq .accordion-header {
    padding: 18px 25px;
    font-size: 1.2em;
    color: #007bff;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-referral-program__faq .accordion-header:hover {
    background-color: #f8f8f8;
}

.page-promotions-referral-program__faq .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #28a745;
}

.page-promotions-referral-program__faq .accordion-header.active::after {
    content: '-';
}

.page-promotions-referral-program__faq .accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fcfcfc;
    color: #555;
}

.page-promotions-referral-program__faq .accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px;
}

/* CTA Section */
.page-promotions-referral-program__cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #007bff, #28a745); /* Reversed gradient for variety */
    color: #ffffff;
    text-align: center;
}

.page-promotions-referral-program__cta .section-title {
    color: #ffffff;
    font-size: 2.8em;
}

.page-promotions-referral-program__cta .section-subtitle {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.page-promotions-referral-program__cta .cta-button-large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #ff8400; /* Complementary color for strong CTA */
    border-color: #ff8400;
    color: #ffffff;
}

.page-promotions-referral-program__cta .cta-button-large:hover {
    background-color: #e67500;
    border-color: #e67500;
}

/* Copyright Section */
.page-promotions-referral-program__copyright {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-referral-program .section-title {
        font-size: 2em;
    }

    .page-promotions-referral-program__hero {
        padding: 80px 0;
    }

    .page-promotions-referral-program__hero .hero-title {
        font-size: 2.5em;
    }

    .page-promotions-referral-program__hero .hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-referral-program__about .content-wrapper {
        flex-direction: column;
    }

    .page-promotions-referral-program__how-it-works .steps-grid,
    .page-promotions-referral-program__benefits .benefits-grid,
    .page-promotions-referral-program__terms .terms-grid,
    .page-promotions-referral-program__tips .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-promotions-referral-program .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions-referral-program__hero .hero-title {
        font-size: 2em;
    }

    .page-promotions-referral-program__hero .hero-subtitle {
        font-size: 1em;
    }
}