/* =======================================================
   Ennare — Doğadan Gelen Saflık Bölümü (ULTRA PREMIUM)
   ======================================================= */

.dgs-premium {
    position: relative;
    padding: 100px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Paralaks etkisi verir */
    background-repeat: no-repeat;
    overflow: hidden;
}

/* 🎯 ARKA PLAN CAM EFEKTİ (Glassmorphism) */
.dgs-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.20); /* Beyazımsı tül perde */
    backdrop-filter: blur(1px); /* Arkadaki resmi hafif bulanıklaştırır */
    z-index: 1;
}

.dgs-content-wrapper {
    position: relative;
    z-index: 2; /* İçerik tül perdenin üstünde kalır */
}

/* ---- 🌟 PREMIUM ROZET ---- */
.dgs-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
    position: relative;
    z-index: 5;
}

.dgs-badge {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(174, 190, 129, 0.4);
    border: 4px solid var(--dgs-theme);
    animation: pulseBadge 3s infinite ease-in-out;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 15px 35px rgba(174, 190, 129, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 45px rgba(174, 190, 129, 0.6); }
    100% { transform: scale(1); box-shadow: 0 15px 35px rgba(174, 190, 129, 0.4); }
}

.badge-top { font-size: 0.9rem; font-weight: 800; color: var(--dgs-dark); letter-spacing: 2px; }
.badge-mid { font-size: 2.8rem; font-weight: 900; color: var(--dgs-theme); line-height: 1; margin: 2px 0; }
.badge-bottom { font-size: 0.8rem; font-weight: 700; color: #64748b; letter-spacing: 1px; }

/* ---- 📝 BAŞLIK VE AÇIKLAMA ---- */
.dgs-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding-top: 50px;
}

.dgs-eyebrow {
    display: inline-block;
    color: var(--dgs-theme);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.dgs-title-1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dgs-dark);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.dgs-title-2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dgs-theme);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.dgs-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

/* ---- 🌿 KART GRUBU ---- */
.dgs-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.dgs-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(174, 190, 129, 0.2);
    transition: all 0.4s ease;
}

.dgs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(174, 190, 129, 0.2);
    border-color: var(--dgs-theme);
}

.dgs-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: rgba(174, 190, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dgs-theme);
    transition: transform 0.4s ease;
}

.dgs-card:hover .dgs-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--dgs-theme);
    color: #fff;
}

.dgs-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dgs-dark);
    margin: 0 0 10px 0;
}

.dgs-card-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- ✨ CTA ŞERİDİ ---- */
.dgs-cta-wrapper {
    text-align: center;
}

.dgs-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(174, 190, 129, 0.3);
}

.dgs-cta i {
    font-size: 1.4rem;
    color: var(--dgs-theme);
}

.dgs-cta span {
    font-size: 1.05rem;
    color: #475569;
}

.dgs-cta strong {
    color: var(--dgs-theme);
    font-weight: 800;
}

/* ---- 📱 MOBİL UYUMLULUK ---- */
@media (max-width: 1024px) {
    .dgs-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dgs-premium {
        padding: 60px 0;
        background-attachment: scroll; /* Mobilde paralaks kasma yapmasın diye kapatılır */
    }
    
    .dgs-badge {
        width: 120px;
        height: 120px;
    }
    
    .badge-mid { font-size: 2.2rem; }
    
    .dgs-title-1 { font-size: 2rem; }
    .dgs-title-2 { font-size: 2.2rem; }
    
    .dgs-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .dgs-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }
}