/* GFJN Registration Plugin Styles - Scoped to avoid conflicts */

.gfjn-registration-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.gfjn-registration-wrapper * {
    box-sizing: border-box;
}


/* Registration Hero */

.gfjn-registration-wrapper .registration-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1588681664899-f142ff2dc9b1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    text-align: center;
}

.gfjn-registration-wrapper .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gfjn-registration-wrapper .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000 !important;
    line-height: 1.2;
}

.gfjn-registration-wrapper .hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}


/* Hero Stats */

.gfjn-registration-wrapper .hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gfjn-registration-wrapper .stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.gfjn-registration-wrapper .stat-counter {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gfjn-registration-wrapper .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* Member Type Section */

.gfjn-registration-wrapper .member-type-section {
    padding: 100px 0;
    background: #f8f9ff;
}

.gfjn-registration-wrapper .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gfjn-registration-wrapper .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.gfjn-registration-wrapper .section-title .highlight {
    color: #667eea;
}

.gfjn-registration-wrapper .section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}


/* Member Type Grid */

.gfjn-registration-wrapper .member-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gfjn-registration-wrapper .member-type-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gfjn-registration-wrapper .member-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.gfjn-registration-wrapper .member-type-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.gfjn-registration-wrapper .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.gfjn-registration-wrapper .member-type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.gfjn-registration-wrapper .member-type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.gfjn-registration-wrapper .card-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.gfjn-registration-wrapper .badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.gfjn-registration-wrapper .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.gfjn-registration-wrapper .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gfjn-registration-wrapper .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}


/* Dynamic Form Section */

.gfjn-registration-wrapper .dynamic-form-section {
    padding: 80px 0;
    background: white;
}

.gfjn-registration-wrapper .form-container {
/*     max-width: 800px; */
    margin: 0 auto;
    padding: 40px;
    background: #f8f9ff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gfjn-registration-wrapper .form-placeholder {
    text-align: center;
    padding: 60px 20px;
}

.gfjn-registration-wrapper .placeholder-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 30px;
}

.gfjn-registration-wrapper .form-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.gfjn-registration-wrapper .form-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

.gfjn-registration-wrapper .loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #667eea;
    font-size: 1.2rem;
}

.gfjn-registration-wrapper .loading-spinner i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.gfjn-registration-wrapper .error-message {
    text-align: center;
    padding: 40px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
}


/* Benefits Section */

.gfjn-registration-wrapper .benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.gfjn-registration-wrapper .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gfjn-registration-wrapper .benefit-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gfjn-registration-wrapper .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.gfjn-registration-wrapper .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
}

.gfjn-registration-wrapper .benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

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


/* Testimonials Section */

.gfjn-registration-wrapper .testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gfjn-registration-wrapper .testimonials-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.gfjn-registration-wrapper .testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.gfjn-registration-wrapper .testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin: 20px;
}

.gfjn-registration-wrapper .testimonial-content {
    text-align: center;
}

.gfjn-registration-wrapper .testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}

.gfjn-registration-wrapper .testimonial-content p::before,
.gfjn-registration-wrapper .testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    font-family: serif;
}

.gfjn-registration-wrapper .testimonial-content p::before {
    top: -20px;
    left: -30px;
}

.gfjn-registration-wrapper .testimonial-content p::after {
    bottom: -40px;
    right: -30px;
}

.gfjn-registration-wrapper .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gfjn-registration-wrapper .author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.gfjn-registration-wrapper .author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .gfjn-registration-wrapper .member-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gfjn-registration-wrapper .hero-title {
        font-size: 2.8rem;
    }
    .gfjn-registration-wrapper .hero-stats {
        gap: 30px;
        padding: 30px;
    }
    .gfjn-registration-wrapper .stat-counter {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .gfjn-registration-wrapper .hero-title {
        font-size: 2.2rem;
    }
    .gfjn-registration-wrapper .hero-subtitle {
        font-size: 1.2rem;
    }
    .gfjn-registration-wrapper .member-type-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .gfjn-registration-wrapper .section-title {
        font-size: 2.2rem;
    }
    .gfjn-registration-wrapper .hero-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .gfjn-registration-wrapper .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .gfjn-registration-wrapper .stat-item:last-child {
        border-bottom: none;
    }
    .gfjn-registration-wrapper .testimonial-slide {
        padding: 30px 20px;
        margin: 10px;
    }
    .gfjn-registration-wrapper .testimonial-content p {
        font-size: 1.2rem;
    }
    .gfjn-registration-wrapper .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gfjn-registration-wrapper .hero-title {
        font-size: 1.8rem;
    }
    .gfjn-registration-wrapper .section-title {
        font-size: 1.8rem;
    }
    .gfjn-registration-wrapper .form-container {
        padding: 20px;
    }
    .gfjn-registration-wrapper .testimonial-content p::before,
    .gfjn-registration-wrapper .testimonial-content p::after {
        display: none;
    }
}


/* Animation for cards */

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

.gfjn-registration-wrapper .member-type-card,
.gfjn-registration-wrapper .benefit-card {
    animation: gfjnFadeIn 0.6s ease-out forwards;
}


/* Counter Animation */

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

.gfjn-registration-wrapper .stat-counter.animated {
    animation: gfjnCountUp 0.8s ease-out forwards;
}

