/* Info Section - Interactive Federation Information */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 63, 103, 0.1), transparent);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #e67e22;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: pulse-warning 3s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
}

.info-badge svg {
    width: 18px;
    height: 18px;
}

.info-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.info-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 63, 103, 0.08);
    border: 1px solid rgba(26, 63, 103, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 63, 103, 0.15);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: rotate(5deg) scale(1.1);
}

.info-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Larger icon for education card */
.info-card[data-card="education"] .info-card-icon svg {
    width: 44px;
    height: 44px;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.info-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-card-link:hover {
    color: var(--primary-light);
    gap: 0.75rem;
}

.info-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.info-card-link:hover svg {
    transform: translateX(3px);
}

.info-disclaimer {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.info-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    animation: shimmer-warning 3s infinite;
}

@keyframes shimmer-warning {
    0% { left: -100%; }
    100% { left: 100%; }
}

.info-disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce-warning 2s ease-in-out infinite;
}

@keyframes bounce-warning {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.info-disclaimer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1rem;
}

.info-disclaimer-text {
    color: #e67e22;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.info-disclaimer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #e67e22;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-disclaimer-link:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.info-disclaimer-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.info-disclaimer-link:hover svg {
    transform: rotate(15deg);
}

/* Interactive Animation Classes */
.info-card.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .info-section {
        padding: 60px 0;
    }
    
    .info-container {
        padding: 0 1.5rem;
    }
    
    .info-grid {
        gap: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 50px 0;
    }
    
    .info-container {
        padding: 0 1rem;
    }
    
    .info-header {
        margin-bottom: 3rem;
    }
    
    .info-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .info-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .info-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .info-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .info-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card-description {
        margin-bottom: 1rem;
    }
    
    .info-disclaimer {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .info-disclaimer-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .info-disclaimer-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 40px 0;
    }
    
    .info-container {
        padding: 0 0.75rem;
    }
    
    .info-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .info-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .info-card-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .info-disclaimer {
        padding: 1.5rem;
    }
    
    .info-disclaimer-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
} 