/* ==========================================================================
   PARTNER BUILDERS PAGE STYLES (public/partner-builders.blade.php)
   ========================================================================== */

.builders-hero {
    background: linear-gradient(135deg, #151247 0%, #1a165c 100%);
    color: #ffffff;
    padding: 50px 0 45px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent-orange, #bd4a3c);
    margin-bottom: 40px;
}
.builders-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}
.builders-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.partner-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.partner-page-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
}
.partner-page-card:hover {
    border-color: var(--accent-orange, #bd4a3c);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(189, 74, 60, 0.12);
}
.partner-page-card img {
    max-width: 170px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.partner-page-card:hover img {
    transform: scale(1.06);
}
.developers-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-navy, #151247);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.developer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.dev-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.dev-card:hover {
    border-color: var(--accent-orange, #bd4a3c);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.dev-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-navy, #151247);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.dev-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy, #151247);
    margin-bottom: 4px;
}
.dev-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
.partner-cta-box {
    background: #f8fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 60px;
}
.partner-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-navy, #151247);
    margin-bottom: 10px;
}
.partner-cta-box p {
    color: #475569;
    font-size: 15px;
    margin-bottom: 20px;
}
.partner-cta-btn {
    background: var(--accent-orange, #bd4a3c);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .builders-hero {
        padding: 35px 15px;
    }
    .builders-hero h1 {
        font-size: 26px;
    }
    .partner-grid-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    .partner-page-card {
        height: 110px;
        padding: 15px;
    }
    .partner-page-card img {
        max-width: 120px;
        max-height: 55px;
    }
}
