
/* ===== Video Section ===== */
.video-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Community Section ===== */
.community-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 95, 79, 0.05) 0%, rgba(74, 157, 127, 0.05) 100%);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text .section-tag {
    margin-bottom: 1rem;
}

.community-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.requirement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.req-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.req-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.req-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.community-cta {
    margin-top: 2rem;
}

.community-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(58, 143, 111, 0.1);
}

.community-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(58, 143, 111, 0.1);
}

.community-card .card-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.community-card .card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-stats .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(58, 143, 111, 0.05) 0%, rgba(90, 184, 143, 0.05) 100%);
    border-radius: 12px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info h4 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(58, 143, 111, 0.1);
}

.card-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-features .feature i {
    color: var(--success-color);
    font-size: 1rem;
}

/* ===== Footer Logo ===== */
.footer-logo-image {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ===== Responsive Updates ===== */
@media (max-width: 768px) {
    .community-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .community-text .section-title {
        font-size: 2rem;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .requirement-item:hover {
        transform: translateY(-5px);
    }
    
    .video-section {
        padding: 4rem 0;
    }
    
    .logo-image {
        height: 30px;
    }
}

/* Update orb colors to match logo */
.orb-1 {
    background: linear-gradient(135deg, #2d5f4f 0%, #4a9d7f 100%);
}

.orb-2 {
    background: linear-gradient(135deg, #4a9d7f 0%, #5ab88f 100%);
}

.orb-3 {
    background: linear-gradient(135deg, #5ab88f 0%, #d4af37 100%);
}

/* Update CTA section gradient */
.cta-section {
    background: linear-gradient(135deg, #2d5f4f 0%, #4a9d7f 70%, #5ab88f 100%);
}

/* Update section tags */
.section-tag {
    background: linear-gradient(135deg, rgba(58, 143, 111, 0.1), rgba(90, 184, 143, 0.1));
    color: var(--primary-color);
}
