/* Cooperation Page Specific Styles */

/* Cooperation Hero */
.cooperation-hero {
    padding: 12rem 0 5rem;
    background: linear-gradient(rgba(10, 24, 40, 0.9), rgba(10, 24, 40, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cooperation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cooperation-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Process Steps */
.process-steps {
    padding: 5rem 0;
    background-color: white;
}

.step-container {
    max-width: 1000px;
}
.step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


.step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    min-width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-content > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.step-features li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--success);
}

.step-features li strong {
    color: var(--dark);
}

/* Documents Section */
.documents-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.document-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.document-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.document-card > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.document-list li i {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
    background-color: white;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.payment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.payment-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.guarantee-section {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(10, 108, 255, 0.05);
    border-radius: 15px;
}

.guarantee-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.guarantee-section p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(10, 108, 255, 0.1) 0%, rgba(0, 217, 192, 0.1) 100%);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.contact-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--gray);
}

.cooperation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Cooperation Page */
@media (max-width: 992px) {
    .cooperation-hero h1 {
        font-size: 2.5rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cooperation-hero {
        padding: 10rem 0 3rem;
    }
    
    .cooperation-hero h1 {
        font-size: 2rem;
    }
    
    .process-steps,
    .documents-section,
    .payment-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .cooperation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cooperation-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .step-features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .document-card {
        padding: 1.5rem;
    }
}