/* Partnership Page Styles */

/* Make Header Login Button More Visible */
.partnership-hero ~ * .header-1 .btn-login,
.header-1 .btn-login,
.header-2 .btn-login-white {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 68, 79, 0.3) !important;
    color: #333333 !important;
    font-weight: 700 !important;
    padding: 0.875rem 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(255, 68, 79, 0.2) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.header-1 .btn-login:hover,
.header-2 .btn-login-white:hover {
    background: #ffffff !important;
    border-color: #FF444F !important;
    color: #FF444F !important;
    box-shadow: 0 6px 24px rgba(255, 68, 79, 0.35) !important;
    transform: translateY(-2px) !important;
}

[data-theme="dark"] .header-1 .btn-login,
[data-theme="dark"] .header-2 .btn-login-white {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .header-1 .btn-login:hover,
[data-theme="dark"] .header-2 .btn-login-white:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}

/* Override mobile hiding for partnership page */
@media (max-width: 1024px) {
    .header-1 .btn-login,
    .header-2 .btn-login-white {
        display: inline-flex !important;
        padding: 0.75rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .header-1 .btn-login,
    .header-2 .btn-login-white {
        display: inline-flex !important;
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Hero Section */
.partnership-hero {
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
}

.partnership-hero .hero-background {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    opacity: 0.1;
}

.partnership-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partnership-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced "Become an IB" Button Design */
.partnership-hero .hero-btn-primary {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%) !important;
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    padding: 1.25rem 3.5rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(255, 68, 79, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.partnership-hero .hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.partnership-hero .hero-btn-primary:hover {
    background: linear-gradient(135deg, #e63946 0%, #FF5722 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 48px rgba(255, 68, 79, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.partnership-hero .hero-btn-primary:hover::before {
    left: 100%;
}

.partnership-hero .hero-btn-primary:active {
    transform: translateY(-1px) scale(1.01) !important;
    box-shadow: 0 6px 24px rgba(255, 68, 79, 0.4) !important;
}

[data-theme="dark"] .partnership-hero {
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.2) 0%, rgba(255, 107, 53, 0.15) 100%);
}

/* Revenue Section */
.revenue-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    text-align: center;
}

[data-theme="light"] .revenue-section {
    background: #ffffff;
}

.revenue-content {
    max-width: 900px;
    margin: 0 auto;
}

.revenue-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.revenue-section .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.revenue-section .cta-button {
    background: linear-gradient(135deg, #FF444F 0%, #FF6B35 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 68, 79, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.revenue-section .cta-button:hover {
    background: linear-gradient(135deg, #e63946 0%, #FF5722 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 68, 79, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Features Grid Section */
.features-grid-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

[data-theme="light"] .features-grid-section {
    background: #f5f5f5;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .feature-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 68, 79, 0.2);
    border-color: rgba(255, 68, 79, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #FF444F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF444F;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 68, 79, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 68, 79, 0.2);
}

.feature-link:hover {
    background: rgba(255, 68, 79, 0.15);
    border-color: rgba(255, 68, 79, 0.4);
    transform: translateX(3px);
}

.feature-link:hover {
    gap: 0.75rem;
    color: #FF6B35;
}

.feature-link svg {
    transition: transform 0.3s ease;
}

.feature-link:hover svg {
    transform: translateX(3px);
}

/* Global Reach Section */
.global-reach-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    text-align: center;
}

[data-theme="light"] .global-reach-section {
    background: #ffffff;
}

.global-reach-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .benefit-item {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 68, 79, 0.15);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: rgba(255, 68, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF444F;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsibilities Section */
.responsibilities-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

[data-theme="light"] .responsibilities-section {
    background: #f5f5f5;
}

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.two-column-layout .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF444F;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    text-align: center;
}

[data-theme="light"] .why-us-section {
    background: #ffffff;
}

.why-us-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.why-us-section .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.15rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: #FF444F;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 68, 79, 0.35);
}

.cta-button.primary:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 68, 79, 0.45);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.cta-button.secondary:hover {
    background: var(--glass);
    border-color: #FF444F;
    color: #FF444F;
}

/* Trade Less Section */
.trade-less-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    text-align: center;
}

[data-theme="dark"] .trade-less-section {
    background: linear-gradient(135deg, rgba(255, 68, 79, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.trade-less-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partnership-hero .hero-title {
        font-size: 2.5rem;
    }

    .partnership-hero .hero-subtitle {
        font-size: 1.25rem;
    }

    .revenue-section,
    .features-grid-section,
    .global-reach-section,
    .responsibilities-section,
    .why-us-section {
        padding: 4rem 1.5rem;
    }

    .revenue-section .section-title,
    .global-reach-section .section-title,
    .why-us-section .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .partnership-hero {
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .partnership-hero .hero-title {
        font-size: 2rem;
    }

    .partnership-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .revenue-section .section-title,
    .global-reach-section .section-title,
    .why-us-section .section-title {
        font-size: 1.75rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}

