/* Partner Page Specific Styles */
.partner-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c5a 30%, #6b3a5d 60%, #8b4557 100%);
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
}

.partner-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.partner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.partner-hero-year {
    display: inline-block;
    background: var(--gradient-button);
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.partner-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-hero .highlight {
    color: var(--accent-pink);
    font-weight: 600;
}

/* Sections */
.partner-section {
    padding: 80px 0;
    position: relative;
}

.partner-section-dark {
    background: var(--bg-secondary);
}

.partner-section-gradient {
    background: linear-gradient(180deg, #1a0a1e 0%, #2d1b3e 50%, #1a0a1e 100%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 25px;
    text-align: center;
    line-height: 1.8;
}

/* Why Sponsor Grid */
.why-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-sponsor-item {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.why-sponsor-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
}

.why-sponsor-item i {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.why-sponsor-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-sponsor-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-pink);
    transition: all 0.3s ease;
    cursor: pointer;
}

.audience-item:hover {
    transform: translateY(-5px) translateX(5px);
    background: rgba(255, 0, 102, 0.1);
    border-left-color: var(--accent-blue);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.2);
}

.audience-item i {
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: all 0.3s ease;
}

.audience-item:hover i {
    transform: scale(1.2);
    color: var(--accent-blue);
}

.audience-item span {
    font-size: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.audience-item:hover span {
    color: #ffffff;
}

/* Sponsorship Tiers */
.sponsorship-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.tier-card {
    flex: 0 1 375px;
    max-width: 375px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Featured styling for all tier cards with matching border colors */
.tier-card.featured-title {
    border-color: #ff0066;
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.tier-card.featured-mission {
    border-color: #9945ff;
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.3);
}

.tier-card.featured-innovation {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.tier-card.featured-technology {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.tier-card.featured-knowledge {
    border-color: #ff9500;
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.3);
}

.tier-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.tier-header.title-partner {
    background: linear-gradient(135deg, #ff0066, #ff6b35);
}

.tier-header.mission-partner {
    background: linear-gradient(135deg, #9945ff, #cc66ff);
}

.tier-header.innovation-partner {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.tier-header.technology-partner {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.tier-header.knowledge-partner {
    background: linear-gradient(135deg, #ff9500, #ffcc00);
}

.tier-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.tier-body {
    padding: 30px;
}

.tier-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: var(--accent-green);
    margin-top: 3px;
}

/* Add-On Modules */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.addon-card {
    padding: 30px;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    border: 2px solid transparent;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0066, #00d4ff, #9945ff);
    opacity: 0.8;
}

.addon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 102, 0.1), transparent 60%);
    pointer-events: none;
}

.addon-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 102, 0.5);
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.2),
                0 0 60px rgba(0, 212, 255, 0.1);
}

.addon-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Inline icon styles */
.addon-icon-inline {
    font-size: 1.2rem;
    margin-right: 8px;
}

.addon-icon-inline.email {
    color: #ff0066;
}

.addon-icon-inline.interview {
    color: #9945ff;
}

.addon-icon-inline.roundtable {
    color: #00d4ff;
}

.addon-icon-inline.lounge {
    color: #00ff88;
}

.addon-info {
    flex: 1;
}

.addon-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.addon-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.addon-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff0066, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.partner-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2c5a 50%, #8b4557 100%);
    position: relative;
}

.partner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 25px 25px;
}

.partner-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.partner-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-box {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 50px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.contact-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-pink);
    background: rgba(255, 0, 102, 0.1);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.3),
                0 0 60px rgba(0, 212, 255, 0.15);
}

.contact-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-box .role {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-pink);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .partner-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .sponsorship-tiers {
        grid-template-columns: 1fr;
    }
    
    .addon-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-box {
        padding: 20px 30px;
    }
}