/* Genel Bölüm Stilleri */
.zenhar-features {
    padding: 60px 0;
    background-color: #f9fafb;
}

.zenhar-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2DD4BF;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.card:hover .card-icon {
    background: #2DD4BF;
    color: #fff;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card a {
    color: #2DD4BF;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

/* Ramazan Kartı Stilleri - Premium Versiyon */
.ramazan-karti {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    border: none;
    align-items: stretch;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.ramazan-karti .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ramazan-karti:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFD700;
}

.ramazan-karti h3 {
    color: #fff;
    text-align: center;
}

/* Header: İkon ve Başlık */
.ramazan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin-bottom: 25px;
    text-align: center;
}

.card-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Dekoratif Kare (İkonun Etrafında) */
.card-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #2DD4BF;
    transform: rotate(45deg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ramazan-karti:hover .card-icon-wrapper::before {
    border-color: #ffffff;
    transform: rotate(90deg);
}

/* Özellikler Listesi */
.ramazan-ozellik-listesi {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.ramazan-ozellik-listesi li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.ramazan-ozellik-listesi li:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ramazan-ozellik-listesi li i {
    color: #FFD700;
    width: 20px;
    text-align: center;
}

/* Footer Link */
.ramazan-karti .card-link-footer {
    color: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ramazan-karti .card-link-footer:hover {
    color: #FFD700;
}

/* Arkaplan Deseni */
.ramazan-karti::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}