/* Partners Page Specific Styles */

.partners-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.partners-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.badge-item i {
    font-size: 1.5rem;
}

/* Partnership Opportunity Section */
.partnership-opportunity {
    padding: 5rem 0;
    background: white;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.opportunity-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.requirement-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
}

.requirement-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.requirement-box h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.requirements-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
}

.requirements-list i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.requirements-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.requirements-list p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.opportunity-image {
    position: sticky;
    top: 2rem;
}

.image-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

.image-card i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.image-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.image-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Partner Benefits Section */
.partner-benefits {
    padding: 5rem 0;
    background: var(--background-light);
}

.partner-benefits h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Partner Types Section */
.partner-types {
    padding: 5rem 0;
    background: white;
}

.partner-types h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.type-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.type-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.type-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.type-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Partner Application Section */
.partner-application {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E9ECEF 100%);
}

.application-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.application-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.application-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.application-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.5;
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-left: 2rem;
}

.help-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-message {
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-message i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-message.success {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
    color: #2E7D32;
}

.form-message.success i {
    color: #4CAF50;
}

.form-message.error {
    background: #FFEBEE;
    border: 2px solid #F44336;
    color: #C62828;
}

.form-message.error i {
    color: #F44336;
}

.form-message strong {
    font-size: 1.1rem;
}

.form-message p {
    margin: 0;
}

.form-message a {
    color: inherit;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .opportunity-content {
        grid-template-columns: 1fr;
    }

    .opportunity-image {
        position: relative;
        top: 0;
    }

    .benefits-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .badge-item {
        justify-content: center;
    }

    .opportunity-text h2,
    .partner-benefits h2,
    .partner-types h2,
    .application-intro h2 {
        font-size: 2rem;
    }

    .application-form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .intro-highlights {
        flex-direction: column;
    }
}
