/* ==========================================================================
   Ortaklık Programı (Partner Landing) - Modüler Sayfa Stilleri (TERFIUI v5)
   ========================================================================== */

/* Sayfa Body Kapsayıcısı — site.css .gd-page-body ana omurgasına bağlı */

/* Sistem Kapalı Uyarısı */
.gd-partner-disabled-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 680px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.gd-partner-disabled-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 50%;
    margin-bottom: 20px;
}

.gd-partner-disabled-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.gd-partner-disabled-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

/* 30 Günlük Çerez Bilgi Şeridi */
.gd-partner-alert-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 14px;
    color: #166534;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.gd-partner-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 2px;
}

.gd-partner-alert-text strong {
    color: #15803d;
}

/* İki Sütunlu Düzen */
.gd-partner-split {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
}

.gd-partner-main {
    flex: 1.2;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01), 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gd-partner-sidebar {
    flex: 0.8;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01), 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

/* Özellikler Listesi */
.gd-partner-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gd-partner-feature-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: all 0.2s ease;
}

.gd-partner-feature-item:hover {
    transform: translateY(-2px);
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.gd-partner-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    transition: all 0.2s ease;
}

.gd-partner-feature-item:hover .gd-partner-feature-icon {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.gd-partner-feature-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.gd-partner-feature-info p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Yol Haritası (Sidebar) */
.gd-partner-sidebar-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gd-partner-steps {
    position: relative;
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gd-partner-steps::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, #cbd5e1, #cbd5e1 4px, transparent 4px, transparent 8px);
}

.gd-partner-step-item {
    position: relative;
}

.gd-partner-step-badge {
    position: absolute;
    left: -45px;
    top: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
    border: 3px solid #ffffff;
    z-index: 1;
    box-sizing: border-box;
}

.gd-partner-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.gd-partner-step-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Alt Aksiyon Kartı (CTA) */
.gd-partner-cta-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.05);
}

.gd-partner-cta-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gd-partner-cta-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.gd-partner-cta-desc {
    font-size: 13.5px;
    color: #475569;
    margin: 0;
}

.gd-partner-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .gd-partner-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .gd-partner-main,
    .gd-partner-sidebar {
        padding: 20px 16px;
    }

    .gd-partner-cta-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px 16px;
    }

    .gd-partner-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .gd-partner-cta-actions .gd-btn {
        width: 100%;
        justify-content: center;
    }
}
