/* Waitlist Additional Sections Styling */

/* Common Section Styling */
.section {
    padding: 60px 0;
    width: 100%;
}

/* Override for waitlist section to match other sections */
.section.waitlist-section {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 40px 0;
    margin-bottom: 0;
    background-color: #ffffff;
    box-shadow: none;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #EA284E;
    margin: 15px auto 0;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Make waitlist container match other containers */
.waitlist-container {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Adjust waitlist flex container */
.waitlist-flex-container {
    margin-bottom: 0 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px !important;
    overflow: hidden;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f8f9fa;
    margin-top: 30px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.how-it-works-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #EA284E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 28px;
}

.how-it-works-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.how-it-works-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(234, 40, 78, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    text-align: right;
}

.testimonial-author p {
    font-size: 14px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #EA284E;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Social Sharing Section */
.social-sharing-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.social-sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.social-share-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.social-share-btn.facebook {
    background-color: #1877F2;
}

.social-share-btn.twitter {
    background-color: #1DA1F2;
}

.social-share-btn.whatsapp {
    background-color: #25D366;
}

.social-share-btn.email {
    background-color: #EA4335;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-item {
        width: 100%;
        max-width: 100%;
    }
    
    .social-sharing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .how-it-works-item {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .social-sharing-grid {
        grid-template-columns: 1fr;
    }
}
