/* ============================================
   SEDİX SERTİFİKA SİSTEMİ - ANA STİLLER
   Version: 1.0.0
   ============================================ */

/* GENEL CONTAINER */
.sedix-sertifika-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* SORGULAMA FORMU */
.sedix-sertifika-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sedix-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 10px 0;
    text-align: center;
}

.sedix-form-description {
    color: #718096;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.sedix-sertifika-form .form-group {
    margin-bottom: 20px;
}

.sedix-sertifika-form label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.sedix-sertifika-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.sedix-sertifika-form input[type="text"]:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.sedix-btn-sorgula {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sedix-btn-sorgula:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
}

.sedix-btn-sorgula:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* SONUÇ ALANI */
.sedix-sertifika-sonuc {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.durum-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.durum-gecerli {
    background: #c6f6d5;
    color: #22543d;
}

.durum-gecersiz {
    background: #fed7d7;
    color: #742a2a;
}

.durum-hata {
    background: #fed7d7;
    color: #742a2a;
}

/* SERTİFİKA BULUNAN */
.sertifika-bulunan {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sertifika-bulunan.gecerli {
    border-left: 5px solid #48bb78;
}

.sertifika-bulunan.gecersiz {
    border-left: 5px solid #f56565;
}

.sertifika-gorsel {
    margin: 20px 0;
    text-align: center;
}

.sertifika-gorsel img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sertifika-detay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 20px 0;
}

.detay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.detay-item {
    background: #f7fafc;
    padding: 12px 16px;
    border-radius: 6px;
}

.detay-label {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.detay-value {
    display: block;
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.btn-detay {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detay:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

/* SERTİFİKA BULUNAMADI */
.sertifika-bulunamadi {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid #f56565;
}

.hata-mesaj {
    font-size: 18px;
    color: #2d3748;
    font-weight: 600;
    margin: 16px 0;
}

.hata-aciklama {
    color: #718096;
    font-size: 14px;
}

/* SERTİFİKA GÖSTER WİDGET */
.sedix-sertifika-display {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.sedix-sertifika-display.gecerli {
    border-left: 5px solid #48bb78;
}

.sedix-sertifika-display.gecersiz {
    border-left: 5px solid #f56565;
}

.sertifika-display-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.sedix-display-full .sertifika-gorsel,
.sedix-display-image_only .sertifika-gorsel {
    margin-bottom: 24px;
}

.sedix-display-card .sertifika-gorsel {
    margin: -30px -30px 24px -30px;
}

.sertifika-gorsel img {
    width: 100%;
    height: auto;
    display: block;
}

.sertifika-detay {
    margin-top: 20px;
}

.detay-item.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detay-item.featured .detay-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

.detay-item.featured .detay-value {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.gecerlilik-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 16px 0;
}

.gecerlilik-gecerli {
    background: #c6f6d5;
    color: #22543d;
}

.gecerlilik-gecersiz {
    background: #fed7d7;
    color: #742a2a;
}

.gecerlilik-badge svg {
    width: 16px;
    height: 16px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-download:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

.btn-download svg {
    width: 16px;
    height: 16px;
}

.sedix-display-card {
    max-width: 500px;
    margin: 0 auto;
}

.sedix-display-card .sertifika-gorsel img {
    border-radius: 0;
}

.sedix-display-info_only .detay-grid {
    grid-template-columns: 1fr;
}

.elementor-alert {
    padding: 15px;
    border-radius: 6px;
    margin: 10px 0;
}

.elementor-alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.elementor-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sedix-sertifika-form-wrapper,
    .sertifika-bulunan,
    .sertifika-bulunamadi {
        padding: 24px;
    }
    
    .detay-grid {
        grid-template-columns: 1fr;
    }
    
    .sedix-form-title {
        font-size: 24px;
    }
    
    .sedix-display-card .sertifika-gorsel {
        margin: -24px -24px 20px -24px;
    }
    
    .sertifika-display-title {
        font-size: 20px;
    }
    
    .detay-item.featured .detay-value {
        font-size: 18px;
    }
}
