/* Enhanced Newsletter Section */
.newsletter-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: clamp(1.5rem, 2.5vw, 4rem);
    font-weight: 800;
    text-shadow: 3px 3px 6px var(--rgba-black-05);
    margin-bottom: 1.5rem;
    font-family: var(--bs-font-sans-serif);
}

.newsletter-subtitle {
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px var(--rgba-black-05);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.newsletter-form {
    background: var(--rgba-white-15);
    border: 1px solid var(--rgba-black-05);
    border-radius: 60px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px var(--rgba-black-02);
}

.newsletter-input {
    border: none;
    border-radius: 50px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    box-shadow: inset 0 2px 10px var(--rgba-black-01);
}

.newsletter-input:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px var(--rgba-white-03);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--rgba-white-03);
}

.newsletter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px var(--rgba-white-03);
    color: var(--primary-dark);
}

.thank-you-box {
    background: var(--rgba-white-15);
    border: 1px solid var(--rgba-black-05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px var(--rgba-black-02);
    margin-top: 2rem;
}

.thank-you-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--rgba-black-05);
}

.thank-you-box p {
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px var(--rgba-black-05);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        background-attachment: scroll;
    }

    .thank-you-box {
        padding: 1.5rem;
    }

    .thank-you-box h3 {
        font-size: 1.5rem;
    }
}
