/* Common Styles */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-subtle {
    0%, 100% { box-shadow: 0 0 0 0 rgba(129, 199, 132, 0.7); }
    50% { box-shadow: 0 0 0 12px rgba(129, 199, 132, 0); }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s infinite;
}

#floating-cta {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

#floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Tab Styles */
.service-content {
    display: none;
}

.service-content.active {
    display: block;
}
