/* --- White Background Section Fix --- */
.section-newsletter {
    background-color: #ffffff !important; /* Background ko pakka WHITE kiya */
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    position: relative;
}

/* Container */
.newsletter-content {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling (Black Text with Pink Highlight) */
.nl-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    color: #1a1a1a !important; /* Title ko Black kiya */
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.nl-title .highlight {
    color: #ff2a55 !important; /* Sirf 'PULSE' word Pink rahega */
}

.nl-desc {
    color: #555555 !important; /* Description ko Dark Grey kiya */
    font-size: 18px;
    font-family: var(--font-primary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Form Styling (Light Grey background for input area) */
.nl-form {
    display: flex;
    gap: 10px;
    background: #f4f4f4; /* Input box ka background halka grey */
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #dddddd;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nl-form:focus-within {
    background: #ffffff;
    border-color: #ff2a55;
    box-shadow: 0 5px 20px rgba(255, 42, 85, 0.15);
}

.nl-form input {
    background: transparent;
    border: none;
    color: #000000;
    padding: 0 25px;
    flex-grow: 1;
    outline: none;
    font-size: 16px;
    font-weight: 500;
}

/* Submit Button */
.nl-form button {
    background: #ff2a55;
    color: #ffffff !important;
    border: none;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nl-form button:hover {
    background: #e01e45;
    transform: translateY(-2px);
}

/* Disclaimer */
.nl-disclaimer {
    margin-top: 25px;
    font-size: 13px;
    color: #888888 !important;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    .nl-title { font-size: 32px; }
    .nl-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    .nl-form input {
        background: #f4f4f4;
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .nl-form button {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
}