/* Mobile Sticky CTA Button */

.mobile-cta-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffb84d 100%);
    transform: scale(1.1) translateY(-5px);
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.5);
}

.mobile-cta-button.phone {
    background: linear-gradient(135deg, var(--success-color) 0%, #34ce57 100%);
}

.mobile-cta-button.phone:hover {
    background: linear-gradient(135deg, #218838 0%, #28a745 100%);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(45, 80, 22, 0.5);
    }
}

@media (max-width: 768px) {
    .mobile-cta-button {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Hide on pages where it's not needed */
    .mobile-cta-button.hide-on-schedule {
        display: none;
    }
}

/* Newsletter Signup */

.newsletter-signup {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.newsletter-signup h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.newsletter-signup p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}


