﻿/* Join Us Section - Modern Professional Design */
.section-join-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    overflow: hidden;
}

/* Content Styles */
.join-content {
    position: relative;
    z-index: 2;
}

.join-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFD500;
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.join-badge i {
    font-size: 1rem;
}

.join-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.25rem;
}

.join-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD500, #FFC400, #FFD500);
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

.join-description {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Features List */
.join-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 213, 0, 0.2);
}

.feature-item:hover {
    background: #FFFFFF;
    transform: translateX(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #FFD500;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #FFD500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.feature-icon i {
    color: #000;
    font-size: 1.25rem;
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: #6B7280;
    margin: 0;
}

/* CTA Section */
.join-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-join-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1A1A1A;
    color: #FFD500;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-join-primary:hover {
    background: #000;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    color: #FFD500;
}

.btn-join-primary i {
    transition: transform 0.3s ease;
}

.btn-join-primary:hover i {
    transform: translateX(-4px);
}

.join-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1;
}

.stat-item span {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #D1D5DB;
}

/* Image Section */
.join-image-wrapper {
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    border-radius: 24px;
    z-index: -1;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD500 0%, #FFC400 100%);
    top: -20px;
    right: -20px;
    opacity: 0.2;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: #FFD500;
    bottom: -40px;
    left: -40px;
    opacity: 0.15;
}

.join-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.join-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.join-image:hover img {
    transform: scale(1.05);
}

/* Floating Card */
.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #FFFFFF;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

@@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD500 0%, #FFC400 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: #000;
    font-size: 1.5rem;
}

.card-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.25rem 0;
}

.card-content p {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
}

/* Background Decorations */
.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 0, 0.1) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive */
@@media (max-width: 991px) {
    .section-join-modern {
        padding: 80px 0;
    }

    .join-title {
        font-size: 2.5rem;
    }

    .join-description {
        font-size: 1.125rem;
    }

    .join-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-join-primary {
        width: 100%;
        justify-content: center;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

@@media (max-width: 576px) {
    .join-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .floating-card {
        padding: 1rem;
        left: 20px;
        right: 20px;
        transform: none;
    }
}



/* RTL: Arrow animation direction */
html[dir="rtl"] .btn-join-primary:hover i {
    transform: translateX(4px);
}

/* LTR: Arrow animation direction */
html[dir="ltr"] .btn-join-primary:hover i {
    transform: translateX(-4px);
}