/* E-Bülten Stilleri */
.newsletter-section {
    background: linear-gradient(45deg, var(--bs-primary) 0%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-desc {
    opacity: 0.9;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 54px;
    border-radius: 27px;
    padding: 0 1.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control:focus {
    background: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.btn-subscribe {
    padding: 0 2rem;
    height: 54px;
    border-radius: 27px;
    background: white;
    color: var(--bs-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .newsletter-wrapper {
        padding: 1.5rem;
        text-align: center;
    }
    
    .newsletter-content {
        margin-bottom: 2rem;
    }
}
