/* Membership Page Styles */

/* Section Titles - Use default h3 styling */
.section-title {
    color: #002245;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    text-align: center;
}

/* Member Benefits List - 2 items per row */
.benefit-list-item {
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
}

.benefit-list-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
    background: #fff5f2;
    border-left-color: #F37039;
}

.benefit-list-item i {
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefit-list-item i.primary {
    color: #F37039;
}

.benefit-list-item i.secondary {
    color: #002245;
}

.benefit-list-item .benefit-text h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-list-item .benefit-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Old benefits-list styles - deprecated */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Old benefit card styles - keep for backward compatibility if needed */
.benefit-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon.primary {
    background: linear-gradient(135deg, #F37039, #ff8c5a);
}

.benefit-icon.secondary {
    background: linear-gradient(135deg, #002245, #003366);
}

.benefit-icon i {
    color: #fff;
    font-size: 28px;
}

.benefit-card h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.border-primary {
    border-top: 5px solid #F37039;
}

.pricing-card.border-secondary {
    border-top: 5px solid #002245;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #002245 0%, #003366 100%);
    transform: scale(1.05);
    z-index: 2;
}

.ribbon-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #F37039;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.popular-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #F37039;
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(243,112,57,0.3);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card.featured .pricing-header {
    margin-top: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-title.primary {
    color: #F37039;
}

.pricing-title.secondary {
    color: #002245;
}

.pricing-card.featured .pricing-title {
    color: #fff;
}

.pricing-amount {
    margin: 15px 0;
}

.pricing-amount .price {
    font-weight: 700;
    color: #002245;
}

.pricing-amount .price.large {
    font-size: 0.9em;
}

.pricing-card.featured .pricing-amount .price {
    color: #fff;
}

.pricing-amount .period {
    color: #666;
    font-weight: 400;
    margin-left: 2px;
}

.pricing-card.featured .pricing-amount .period {
    color: rgba(255,255,255,0.9);
}

.pricing-audience {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.pricing-card.featured .pricing-audience {
    color: rgba(255,255,255,0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured .pricing-features li {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 10px;
}

.pricing-features i.primary {
    color: #F37039;
}

.pricing-features i.secondary {
    color: #002245;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.required-star {
    color: #F37039;
    margin-left: 3px;
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #002245 !important;
    box-shadow: 0 0 0 0.2rem rgba(0,34,69,0.15) !important;
    outline: none;
}

.form-error {
    color: #F37039;
    font-size: 13px;
    margin-top: 5px;
}

.alert-custom {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success-custom {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger-custom {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Captcha Wrapper */
.captcha-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.captcha-box {
    margin-bottom: 15px;
}

.captcha-label {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.captcha-display-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-code {
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #F37039;
    border: 2px solid #002245;
}

.captcha-refresh {
    background: #002245;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #003366;
    transform: scale(1.05);
}

/* How to Join Section */
.how-to-join-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.how-to-join-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.how-to-join-card:hover .info-box {
    background: #fff5f2;
    border-left-color: #F37039;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-number.primary {
    background: linear-gradient(135deg, #F37039, #ff8c5a);
}

.step-number.secondary {
    background: linear-gradient(135deg, #002245, #003366);
}

.step-number span {
    color: white;
    font-size: 32px;
    font-weight: 700;
}

.step-card h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #002245;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.info-list i {
    color: #F37039;
    margin-right: 12px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #002245 0%, #003366 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,34,69,0.3);
}

.benefits-section h2 {
    color: #fff;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

.benefit-content {
    display: flex;
    align-items: start;
    gap: 15px;
}

.benefit-content i {
    color: #fff;
    font-size: 24px;
    margin-top: 5px;
}

.benefit-content h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-content p {
    line-height: 1.5;
}

/* Detailed Pricing Section */
.detail-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    margin-bottom: 20px;
}

.detail-card.border-left-primary {
    border-left: 4px solid #F37039;
}

.detail-card.border-left-secondary {
    border-left: 4px solid #002245;
}

.detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-card h3.primary {
    color: #F37039;
}

.detail-card h3.secondary {
    color: #002245;
}

.detail-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.detail-card .price-display {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-card .price-display.primary {
    color: #F37039;
}

.detail-card .price-display.secondary {
    color: #002245;
}

.detail-card .offerings-title {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.detail-features i {
    margin-right: 10px;
}

.detail-features i.primary {
    color: #F37039;
}

.detail-features i.secondary {
    color: #002245;
}

/* Payment Info Section */
.payment-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #002245;
    transition: all 0.3s ease;
}

.payment-info-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.payment-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #002245;
    transition: all 0.3s ease;
}

.payment-info-card:hover .payment-info-box {
    background: #fff5f2;
    border-left-color: #F37039;
}

/* FAQ Section */
.faq-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F37039;
    box-shadow: 0 3px 12px rgba(243,112,57,0.15);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 15px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question {
    background: #fff5f2;
}

.faq-question span {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.faq-question i {
    color: #F37039;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
    font-size: 14px;
}

.faq-answer {
    background: #fff;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item:hover .faq-answer {
    padding: 15px 18px;
    max-height: 500px;
    opacity: 1;
}

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

.faq-answer p:not(:last-child) {
    margin-bottom: 10px;
}

/* Collapse transitions */
.collapse {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-title-small,
    .section-title-large {
        font-size: 24px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin-bottom: 20px;
    }
    
    .form-section {
        padding: 30px 15px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .btn-submit {
        padding: 12px 35px;
        font-size: 15px;
    }
}
