/* ======================================================================
   AKS-UTS - Uludem B2B Tabanli Stil Tamamlayici
   ====================================================================== */

:root {
    --primary-red: #DC3545;
    --primary-dark: #B02A37;
    --gradient-start: #DC3545;
    --gradient-end: #8B1E3F;
}

.partner-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-red);
}

.partner-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: -10px 0 25px;
}

.agreement-visual {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.agreement-logo {
    width: 180px;
    height: 90px;
    border-radius: 12px;
    border: 2px dashed rgba(220, 53, 69, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 12px;
    color: var(--primary-red);
    font-weight: 700;
}

.agreement-logo img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.agreement-line {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.process-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.process-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.12);
    transform: translateY(-5px);
}

.process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(139, 30, 63, 0.18) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.process-card h4 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.docs-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.doc-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.12);
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.doc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(139, 30, 63, 0.18) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-red);
}

.doc-card h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 700;
}

.doc-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .doc-card {
        flex-direction: column;
        text-align: center;
    }
}
