/* Additional refinements and enhancements */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced mobile navigation */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5282 0%, #2c7a7b 100%);
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    gap: 1rem;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced animations */
.content-card {
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card {
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced typography */
.content-card p {
    text-align: justify;
}

.case-study-content p {
    text-align: justify;
}

/* Enhanced visual elements */
.therapy-icon {
    transition: all 0.3s ease;
}

.therapy-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(44, 122, 123, 0.3);
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card,
.benefit-card,
.case-study-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced focus states for accessibility */
.nav-link:focus,
.hamburger:focus {
    outline: 2px solid #b2f5ea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .content-card,
    .case-study-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

