/* =========================
   Cooperation Page
========================= */

.cooperation-page{
    direction:rtl;
    background:#f8fafc;
    padding-bottom:60px;
}

/* Hero */

.cooperation-hero{
       background: linear-gradient(
        135deg,
        #7f1d1d,
        #991b1b
    );
    padding:60px 20px 120px;
    text-align:center;
}

.cooperation-hero .hero-content{
    margin:auto;
    color:#fff;
}

.cooperation-hero .hero-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    margin-bottom:15px;
}

.cooperation-hero h1{
    margin:0 0 15px;
    font-size:42px;
    font-weight:800;
}

.cooperation-hero p{
    line-height:2;
    font-size:16px;
}

/* Benefits */

.cooperation-benefits{
    max-width:1200px;
    margin:-70px auto 50px;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
border: 1px solid #941b1b;
}

.benefit-card i{
    font-size:34px;
    color:#ef4444;
    margin-bottom:15px;
}

.benefit-card h3{
    margin:0 0 10px;
    font-size:20px;
}

.benefit-card p{
    margin:0;
    color:#64748b;
}

/* Form */

.cooperation-form-section{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.form-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.section-title.center{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    margin:10px 0 0;
    font-size:32px;
}

.form-card .hero-badge{
    background:linear-gradient(135deg,#ef4444,#f97316);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.field{
    display:flex;
    flex-direction:column;
}

.field label{
    margin-bottom:8px;
    font-weight:700;
}

.field input,
.field select,
.field textarea{
    border:1px solid #dbe2ea;
    border-radius:14px;
    padding:14px 16px;
    background:#f8fafc;
    font-family:inherit;
    font-size:14px;
}

.field textarea{
    min-height:140px;
    resize:vertical;
}

.field.full{
    margin-bottom:20px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    outline:none;
    border-color:#ef4444;
}

.submit-btn{
    width:100%;
    border:none;
    cursor:pointer;
    padding:16px;
    border-radius:14px;
    background:linear-gradient(135deg,#ef4444,#f97316);
    color:#fff;
    font-size:16px;
    font-weight:700;
}

/* Responsive */

@media(max-width:992px){

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

    .cooperation-hero h1{
        font-size:34px;
    }
}

@media(max-width:768px){

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

    .form-card{
        padding:25px;
    }

    .section-title h2{
        font-size:24px;
    }

    .cooperation-hero{
        padding:50px 20px 100px;
    }
}
:root{

    --accent:#dc2626;

}

.benefit-card i{

    color:var(--accent);

}



.submit-btn{

    background:var(--accent);

}



.form-card .hero-badge{

    background:var(--accent);

}
.cooperation-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
    padding:18px;
    border-radius:14px;
    margin-bottom:25px;
    text-align:center;
    font-weight:700;
}