/* Footer Newsletter Section */
.footer-newsletter-wrapper {
    background-color: #111;
    /* Match footer background */
    padding: 60px 0 0 0;
}

.footer-newsletter {
    background: linear-gradient(135deg, #1fa36a 0%, #009688 100%);
    border-radius: 40px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 25px 50px rgba(15, 94, 59, 0.2);
    text-align: center;
}

.nl-shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.nl-shape-2 {
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.footer-newsletter h2 {
    font-weight: 800;
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 1rem;
    margin-top: 0;
    color: white;
}

.footer-newsletter p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: white;
}

.footer-newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 60px;
    max-width: 550px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-newsletter-input {
    border: none;
    background: transparent;
    padding: 15px 25px;
    width: 100%;
    border-radius: 50px;
    outline: none;
    color: white;
    font-size: 1.1rem;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter-btn {
    background: white;
    color: #0a5f3a;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
}

.footer-newsletter-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 3rem 1.5rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        gap: 10px;
    }

    .footer-newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-newsletter-btn {
        width: 100%;
    }
}

/* ==========================================================================
   GLOBAL CTA SECTION
   ========================================================================== */
.srv-cta-section {
    padding: 100px 0;
    background: #161616;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 30px 30px 0 0;
    margin-bottom: 0px;
    z-index: 10;
}

.srv-cta-section::before,
.srv-cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

.srv-cta-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.srv-cta-section::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.srv-cta-content {
    position: relative;
    z-index: 2;
}

.srv-cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.srv-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-srv-primary {
    /* background: linear-gradient(135deg, #1e3a5f, #4CAF50) !important; */
    background: var(--caremed-orange-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.btn-srv-primary:hover {
    background: #FF9800;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgb(175 143 76 / 40%);
    color: white;
}

.btn-srv-ghost {
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-srv-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}