/* =========================================
   COLLABORATORS PAGE STYLES
========================================= */

/* --- Hero Section --- */
.collaborators-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 180px;
}

.collaborators-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.7);
    z-index: 1;
}

.collaborators-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.collaborators-hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.collaborators-hero__title span {
    position: relative;
    display: inline-block;
}

.collaborators-hero__underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
}

.collaborators-hero__underline path {
    stroke: #967259;
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.collaborators-hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Engagement Sections --- */
.engagement-section {
    padding: 100px 0;
    background-color: #F9FAFB;
}

.engagement-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.engagement-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.engagement-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(150, 114, 89, 0.3);
}

.engagement-icon svg {
    width: 36px;
    height: 36px;
}

.engagement-content {
    flex: 1;
}

.engagement-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.engagement-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 16px;
}

.engagement-content strong {
    color: #1F2937;
}

.engagement-content a {
    color: #967259;
    font-weight: 600;
    text-decoration: underline;
}

.engagement-content a:hover {
    color: #755541;
}

/* --- Partners Section --- */
.partners-section {
    padding: 80px 0;
    background-color: white;
}

.partners-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    margin-bottom: 48px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Stats Section --- */
.collaborators-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #967259 0%, #755541 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-box__number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-box__label {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .collaborators-hero__title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .engagement-item {
        flex-direction: column;
        text-align: center;
    }

    .engagement-icon {
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-box__number {
        font-size: 36px;
    }
}