/* ==========================================================================
   PARTNER - ELEGANT UNIFIED DESIGN
   ========================================================================== */

/* 1. HERO MINI */
.hero-mini {
    background: linear-gradient(135deg, hsla(224, 64%, 33%, 1) 0%, hsla(221, 83%, 53%, 1) 50%, hsla(224, 64%, 33%, 1) 100%);
    color: white;
    padding: 4rem 1rem 5rem 1rem; /* Padding lebih lega */
    margin-bottom: -3rem; /* Overlap effect ke card bawah */
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-mini h1 {
    margin: 0 0 0.8rem 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-mini p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. MAIN CARD LAYOUT */
.content-wrapper {
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.partner-main-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    padding: 3rem 2rem;
    overflow: hidden;
}

@media(max-width: 768px) {
    .partner-main-card { padding: 2rem 1.5rem; }
}

/* 3. PARTNER CATEGORY SECTION */
.partner-category {
    margin-bottom: 3rem;
}

.cat-title {
    color: #1E3A8A;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.cat-title svg {
    color: #3b82f6;
    width: 28px;
    height: 28px;
}

/* 4. PARTNER GRID LOGO */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.partner-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.partner-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
}

.partner-logo-placeholder {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    color: #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.partner-name {
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.partner-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 5. CTA BOX (Become a Partner) */
.join-box {
    background: #F0F9FF;
    border: 1px dashed #7DD3FC;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.join-box h2 {
    color: #0c4a6e;
    margin-top: 0;
    font-size: 1.8rem;
}

.join-box p {
    color: #334155;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
}

.btn-partner {
    background: #0284C7;
    color: white;
    padding: 12px 32px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.2s;
}

.btn-partner:hover {
    background: #0369a1;
}
/* 5. CTA SECTION (UPDATED: Sama persis dengan Tentang Kami) */
.cta-wrapper {
    text-align: center;
    margin-top: 4rem; /* Jarak atas sedikit lebih lega */
    padding-top: 2rem;
    border-top: 1px dashed #cbd5e1;
}

.section-title {
    color: #1E3A8A;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Garis bawah biru kecil */
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #3b82f6;
    margin: 0 auto; /* Tengah */
    margin-top: 8px;
    border-radius: 2px;
}

.text-content {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
