/* Base Styles */
body {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7ab8c5;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

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

/* Interactive Elements */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Section Spacing */
section {
    scroll-margin-top: 100px;
}

/* Services Icons */
.service-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-icon:hover {
    transform: rotate(10deg) scale(1.1);
    background-color: #7ab8c5;
}

/* Testimonial Cards */
.testimonial-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
/* Wellness Packages Grid */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.membership-card:hover {
    box-shadow: 0 10px 25px rgba(156, 212, 227, 0.2);
    transform: translateY(-5px);
}

.membership-card .feature-list li {
    position: relative;
    padding-left: 1.5rem;
}

.membership-card .feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--accent);
}

.package-badge {
    animation: pulse 1.5s infinite;
}

@keyframes highlightPulse {
    0% { box-shadow: 0 0 0 0 rgba(156, 212, 227, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(156, 212, 227, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 212, 227, 0); }
}

.highlight-card {
    animation: highlightPulse 2s infinite;
    position: relative;
    z-index: 1;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .membership-table th,
    .membership-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Form Elements */
.input-field {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(156, 212, 227, 0.5);
}
/* FAQ Accordion Styles */
.accordion-content {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.accordion-content:not(.hidden) {
    max-height: 500px;
}

/* Button Animations */
.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 212, 227, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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