/* Noyanlar Group Announcement Section - Minimal */
.noyanlar-announcement {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px !important;
}

/* Disable Christmas decorations for this section */
.noyanlar-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../noyan.jpg') center center;
    background-size: cover;
    filter: blur(0.5px);
    z-index: 0;
    animation: none !important;
}

.noyanlar-announcement::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
    animation: none !important;
}

.noyanlar-section {
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.noyanlar-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.noyanlar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #C1121F 0%, #9D0208 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.noyanlar-badge i {
    font-size: 1rem;
}

.noyanlar-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.noyanlar-title .highlight {
    color: #C1121F;
}

.noyanlar-title .highlight-alt {
    color: #1a1a1a;
}

.noyanlar-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.noyanlar-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.noyanlar-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.noyanlar-feature:hover {
    background: rgba(193, 18, 31, 0.1);
    transform: translateY(-2px);
}

.noyanlar-feature i {
    font-size: 1.2rem;
    color: #C1121F;
}

.noyanlar-feature span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.noyanlar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #C1121F 0%, #9D0208 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(193, 18, 31, 0.25);
    transition: all 0.4s ease;
}

.noyanlar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(193, 18, 31, 0.35);
}

.noyanlar-cta i {
    transition: transform 0.3s ease;
}

.noyanlar-cta:hover i {
    transform: translateX(4px);
}

/* Animation */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(193, 18, 31, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .noyanlar-title {
        font-size: 1.4rem;
    }

    .noyanlar-desc {
        font-size: 0.9rem;
    }

    .noyanlar-features {
        gap: 12px;
    }

    .noyanlar-feature {
        padding: 8px 14px;
    }

    .noyanlar-feature i {
        font-size: 1rem;
    }
}

/* Disable Christmas theme icons for Noyanlar section */
.noyanlar-announcement.section-glass-container::before,
.noyanlar-announcement.section-glass-container::after {
    content: '' !important;
    animation: none !important;
}