/* Partner Section Styles */
.partner-section {
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.benefit-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-type-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-type-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partner-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.partner-btn:hover::before {
    left: 100%;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6) !important;
    background: #ff5722 !important;
}

.cta-btn.secondary:hover {
    background: white !important;
    color: #667eea !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-section {
        padding: 2rem 1rem !important;
    }
    
    .partner-content h2 {
        font-size: 2rem !important;
    }
    
    .partner-content p {
        font-size: 1rem !important;
    }
    
    .benefit-card,
    .partner-type-card {
        padding: 1.5rem !important;
    }
    
    .benefit-icon,
    .type-icon {
        font-size: 2.5rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-btn {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 1.5rem 0.5rem !important;
    }
    
    .partner-content h2 {
        font-size: 1.8rem !important;
    }
    
    .benefit-card,
    .partner-type-card {
        padding: 1rem !important;
    }
    
    .benefit-icon,
    .type-icon {
        font-size: 2rem !important;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.partner-type-card {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.partner-type-card:nth-child(1) { animation-delay: 0.4s; }
.partner-type-card:nth-child(2) { animation-delay: 0.5s; }

/* Floating animation for icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.benefit-icon i,
.type-icon i {
    animation: float 3s ease-in-out infinite;
}

.benefit-icon i:nth-child(1) { animation-delay: 0s; }
.benefit-icon i:nth-child(2) { animation-delay: 1s; }
.benefit-icon i:nth-child(3) { animation-delay: 2s; }
