/* Join Page Styles */

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

/* Hero Section */
.join-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    margin: 20px 0;
}

.highlight-badge {
    background: #ff4757;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-price {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
}

.hero-description {
    font-size: 20px;
    margin: 25px 0;
    opacity: 0.95;
}

.hero-arrow {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.payment-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.payment-toggle {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-btn {
    flex: 1;
    max-width: 300px;
    padding: 20px 30px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: #667eea;
    color: #ffffff;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.payment-logo {
    font-size: 24px;
}

.payment-form-container {
    display: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.payment-form-container.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.pricing-display {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-amount span {
    font-size: 24px;
    opacity: 0.9;
}

.price-details {
    font-size: 16px;
    opacity: 0.9;
}

.payment-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.feature-item {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
}

.feature-item::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
}

/* Registration and Login Elements */
.registration-notice {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.registration-notice p {
    margin: 0;
    color: #333;
    font-size: 16px;
}

.registration-notice strong {
    color: #667eea;
}

.login-option {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-option p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.login-option a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-option a:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* s2Member form customization */
.payment-form-container form {
    margin-top: 30px;
}

.payment-form-container .s2member-pro-stripe-form,
.payment-form-container form[action*="paypal"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Style s2Member registration fields */
.payment-form-container input[type="text"],
.payment-form-container input[type="email"],
.payment-form-container input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.payment-form-container input[type="text"]:focus,
.payment-form-container input[type="email"]:focus,
.payment-form-container input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
}

.payment-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: left;
    width: 100%;
}

.payment-form-container input[type="submit"],
.payment-form-container button[type="submit"] {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.payment-form-container input[type="submit"]:hover,
.payment-form-container button[type="submit"]:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 60px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

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

.testimonial-card {
    background: #ffffff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #667eea;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
    border-radius: 12px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

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

.faq-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.final-cta h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.scroll-to-payment {
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-payment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .highlight-price {
        font-size: 24px;
    }
    
    .payment-toggle {
        flex-direction: column;
    }
    
    .toggle-btn {
        max-width: 100%;
    }
    
    .payment-form-container {
        padding: 25px;
    }
    
    .price-amount {
        font-size: 42px;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
