/* ===================================
   PARCERIA PAGE STYLES
   =================================== */

/* Partnership Hero Section */
.partnership-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #001529 0%, #000814 50%, #001F35 100%);
    overflow: hidden;
}

.partnership-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 168, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.partnership-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.partnership-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Partnership Container */
.partnership-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

/* Partnership Benefits Sidebar */
.partnership-benefits {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.partnership-benefits h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Partner Types */
.partner-types {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-types h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.partner-types ul {
    list-style: none;
    padding: 0;
}

.partner-types li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.partner-types li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: bold;
}

/* Partnership Form Container */
.partnership-form-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.partnership-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.partnership-form-container .subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Contact Link */
.contact-link {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-link p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.contact-link a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partnership-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partnership-benefits {
        order: 2;
    }

    .partnership-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .partnership-hero {
        padding: 6rem 0 4rem;
    }

    .partnership-hero h1 {
        font-size: 2rem;
    }

    .partnership-hero p {
        font-size: 1.1rem;
    }

    .partnership-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .partnership-benefits,
    .partnership-form-container {
        padding: 1.5rem;
    }

    .partnership-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .partnership-hero h1 {
        font-size: 1.75rem;
    }

    .benefit-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-item i {
        font-size: 1.25rem;
    }
}
