/* Custom animations and utilities */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

.hero-shape {
    animation: float 6s ease-in-out infinite;
}

.shape-circle-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    border-radius: 50%;
    opacity: 0.5;
    animation-delay: 0s;
}

.shape-circle-2 {
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
    opacity: 0.4;
    animation-delay: 2s;
}

.shape-square-1 {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    border-radius: 24px;
    opacity: 0.3;
    animation: float-reverse 7s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-triangle {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #5eead4;
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
    animation-delay: 3s;
    transform: rotate(15deg);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Navigation scroll effect */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

/* Fade in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0d9488;
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Button hover effects */
button:hover,
a:hover {
    cursor: pointer;
}

/* Mobile menu animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Product card hover */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Counter animation */
.counter {
    display: inline-block;
}
