/* Hero blob animations */
.hero-blob {
    animation: blobFloat1 8s ease-in-out infinite;
}
.hero-blob-2 {
    animation: blobFloat2 10s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.2); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -50px) scale(1.3); }
}

/* Scroll indicator */
.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Contact FAB pulse */
.contact-pulse {
    animation: fabPulse 2s ease-in-out infinite;
}
@keyframes fabPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact options animation */
.contact-option {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.contact-option.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ENT calculator slider */
.ent-slider {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #f5f5f7;
    outline: none;
}
.ent-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3399ff;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(51, 153, 255, 0.4);
}
.ent-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3399ff;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(51, 153, 255, 0.4);
}

/* FAQ accordion */
.faq-chevron.open {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}
.faq-answer.open {
    max-height: 2000px;
    opacity: 1;
}

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

/* Fix for WP admin bar */
body.admin-bar header#site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar header#site-header {
        top: 46px;
    }
}
