/* Professional Partners Page Styles */
.partners-page {
    min-height: 100vh;
    background: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.partners-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-pills::before,
.floating-pills::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-pills::before {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-pills::after {
    top: 65%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-line-2 {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
    margin: 0 auto;
}

/* Partners Showcase Section */
.partners-showcase {
    padding: 120px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.partner-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 0 30px 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    color: #64748b;
    width: 48px;
    height: 48px;
}

.partner-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.partner-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partner-title a:hover {
    color: #3b82f6;
}

.partner-description {
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 30px 0;
    font-size: 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.partner-link:hover {
    color: #ffffff;
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.partners-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #f8fafc;
    border-radius: 24px;
    border: 2px dashed #cbd5e1;
}

.placeholder-content {
    color: #64748b;
}

.placeholder-content svg {
    color: #94a3b8;
    margin-bottom: 24px;
}

.placeholder-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #334155;
    margin: 0 0 12px 0;
}

.placeholder-content p {
    margin: 0;
    font-size: 1.1rem;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Become Partner Section */
.become-partner {
    padding: 120px 0;
    background: #ffffff;
}

.become-partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.become-partner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.become-partner-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.become-partner-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #475569;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-item svg {
    color: #3b82f6;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.become-partner-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 40px 0;
    letter-spacing: -0.01em;
}

.partnership-form {
    background: #f8fafc;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .become-partner-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .become-partner-title {
        font-size: 2.25rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .become-partner-title {
        font-size: 1.875rem;
    }
    
    .partner-card,
    .benefit-card {
        padding: 30px 25px;
    }
    
    .partnership-form {
        padding: 30px 20px;
    }
}