/* ============================================
   PARTNERSHIPS PAGE STYLES
   Clean modern design with gradients and cards
   ============================================ */

/* Page Wrapper */
.partner-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff 50%, #f0fff4 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Floating Blobs */
.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    top: -100px;
    right: -100px;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: 20%;
    left: -100px;
    animation: blobFloat 25s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: -50px;
    right: 20%;
    animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Container */
.partner-page-wrapper .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Fade Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Labels */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-subheading {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.partner-hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.partner-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1rem;
}

.partner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.partner-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.45);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #7c3aed;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: #a855f7;
    background: #faf5ff;
    color: #7c3aed;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #faf5ff, #f0fdf4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1.25rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs-section {
    margin-bottom: 5rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.15);
}

.program-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.35rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
}

.program-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.program-header.schools {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.program-header.retailers {
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
}

.program-header.artists {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.program-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.program-header.schools .program-icon {
    color: #3b82f6;
}

.program-header.retailers .program-icon {
    color: #7c3aed;
}

.program-header.artists .program-icon {
    color: #f59e0b;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.program-header p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.program-body {
    padding: 2rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-features i {
    color: #10b981;
    font-size: 1rem;
}

.program-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #f8fafc;
    color: #7c3aed;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
}

.program-card.featured .program-btn {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
}

.program-card.featured .program-btn:hover {
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
    margin-bottom: 5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-content {
    padding-right: 2rem;
}

.why-content .section-heading {
    text-align: left;
}

.section-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.benefit-row:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #faf5ff, #ede9fe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1.25rem;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Use Case Cards */
.why-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.use-case-card.education {
    border-left: 4px solid #3b82f6;
}

.use-case-card.corporate {
    border-left: 4px solid #10b981;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.use-case-card.corporate .use-case-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #10b981;
}

.use-case-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.use-case-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.95rem;
}

.use-case-card li i {
    color: #10b981;
    font-size: 0.9rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    margin-bottom: 5rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 200px;
    margin: 0;
}

.process-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    border-radius: 3px;
    margin-top: -2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding-bottom: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #7c3aed;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #7c3aed;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .program-card.featured {
        transform: none;
        order: -1;
    }
    
    .program-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        padding-right: 0;
    }
    
    .why-content .section-heading {
        text-align: center;
    }
    
    .why-content .section-label {
        display: block;
        text-align: center;
    }
    
    .section-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .partner-page-wrapper {
        padding: 2rem 0;
    }
    
    .partner-title {
        font-size: 2.5rem;
    }
    
    .partner-subtitle {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .stats-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-blob {
        display: none;
    }
}

@media (max-width: 480px) {
    .partner-title {
        font-size: 2rem;
    }
    
    .hero-cta-row {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .program-header {
        padding: 2rem 1.5rem;
    }
    
    .program-body {
        padding: 1.5rem;
    }
    
    .benefit-row {
        padding: 1rem;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
}
