body {
    font-family: 'Lato';
    scroll-behavior: smooth;
}
.hero-gradient {
    background: linear-gradient(135deg, #2B3A4A 50%, #F2784B 100%);}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
}
.active-nav {
    color: #fcd432;
    font-weight: 600;
}
.testimonial-card, .service-card, .pricing-card {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card:hover, .service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.nav-bar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(52, 191, 105, 0.5) 0%, rgba(252, 212, 50, 0.8) 100%);
    backdrop-filter: blur(10px);
    transition: background 0.4s, box-shadow 0.4s;
}
.nav-bar a {
    transition: color 0.3s;
}
button, a {
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
}
button:active, a:active {
    transform: scale(0.97);
}
#backToTop {
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.9;
}
#backToTop.show {
    opacity: 1;
    transform: translateY(-10px);
}
/* AOS custom overrides */
[data-aos] {
    will-change: transform, opacity;
} 