/**
 * RYVION Studios - Partnership Page Styles
 * Clean, modular CSS ready for dashboard integration
 */

/* ============================================
   FLOATING EMOJIS - ALL SECTIONS
   ============================================ */
.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.float-emoji {
    position: absolute;
    font-size: 40px;
    opacity: 0.2;
    animation: float-emoji-anim 20s infinite ease-in-out;
}

.emoji-1 { top: 10%; left: 5%; animation-duration: 22s; animation-delay: 0s; }
.emoji-2 { top: 25%; right: 8%; animation-duration: 26s; animation-delay: 3s; }
.emoji-3 { top: 45%; left: 10%; animation-duration: 24s; animation-delay: 6s; }
.emoji-4 { top: 60%; right: 12%; animation-duration: 28s; animation-delay: 9s; }
.emoji-5 { top: 75%; left: 7%; animation-duration: 25s; animation-delay: 12s; }
.emoji-6 { top: 85%; right: 10%; animation-duration: 23s; animation-delay: 15s; }
.emoji-7 { top: 35%; left: 85%; animation-duration: 27s; animation-delay: 4s; }
.emoji-8 { top: 50%; right: 90%; animation-duration: 21s; animation-delay: 8s; }

@keyframes float-emoji-anim {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.9);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-50px) rotate(270deg) scale(1.15);
        opacity: 0.35;
    }
}

/* ============================================
   PARTNERSHIP HERO SECTION
   ============================================ */
.partnership-hero {
    padding: 140px 0 100px 0;
    position: relative;
    background: #0a0e27;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.partnership-hero .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.partnership-hero .section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        rgba(10, 14, 39, 0.7) 50%,
        transparent 100%
    );
    z-index: 1;
}

.partnership-hero .section-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        rgba(10, 14, 39, 0.7) 50%,
        transparent 100%
    );
    z-index: 1;
}

.partnership-hero .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.7);
    z-index: 1;
}

.partnership-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.partnership-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partnership-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #4a90e2;
    margin-bottom: 40px;
}

.partnership-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    text-align: left;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BENEFITS SECTION - 8 CARDS WITH HOVER
   ============================================ */
.benefits-section {
    padding: 100px 0;
    background: #0a0e27;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(15, 25, 50, 0.8) 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER EFFECT - POP OUT AND GLOW */
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.4),
                0 0 30px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, rgba(15, 25, 50, 0.9) 0%, rgba(20, 35, 60, 0.9) 100%);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   CTA SECTION - "STILL NEED TO KNOW"
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: #0a0e27;
    position: relative;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 40px;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    text-align: left;
}

.cta-button {
    background: linear-gradient(135deg, #1e3c78 0%, #2d5a9e 50%, #4a7ac2 100%);
    border: 3px solid #ffffff;
    color: #ffffff;
    padding: 18px 60px 18px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0% 50%);
    box-shadow: 0 0 25px rgba(74, 144, 226, 0.4);
    letter-spacing: 0.5px;
    margin-top: 40px;
}

.cta-button::after {
    content: '\25C6';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ffffff;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2d5a9e 0%, #4a7ac2 50%, #6b9dd6 100%);
    border-color: #ffffff;
    box-shadow: 0 0 35px rgba(74, 144, 226, 0.7);
    transform: translateX(8px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0 80px 0;
    position: relative;
    background: #0a0e27;
}

.contact-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-section .section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        transparent 100%
    );
    z-index: 1;
}

.contact-section .section-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        #0a0e27 0%, 
        rgba(10, 14, 39, 0.95) 20%,
        transparent 100%
    );
    z-index: 1;
}

.contact-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.55);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 14px;
    letter-spacing: 3px;
    color: #4a90e2;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

.contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-btn-primary, .contact-btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn-primary {
    background: #4a90e2;
    border: none;
    color: #ffffff;
}

.contact-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.contact-btn-primary:hover {
    background: #357abd;
}

.contact-btn-secondary:hover {
    border-color: #4a90e2;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .partnership-title {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .partnership-subtitle {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .partnership-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .partnership-subtitle {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 16px 50px 16px 35px;
        font-size: 14px;
    }
    
    /* Hide some floating emojis on mobile */
    .emoji-7,
    .emoji-8 {
        display: none;
    }
}
