

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }




.fx-signature {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}


.fx-signature.is-animated {
  animation: fx-puff 0.6s cubic-bezier(0.4,0,0.2,1) backwards;
}

@keyframes fx-puff {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}


.fx-signature::before,
.fx-signature::after {
  content: '';
  position: absolute;
  inset: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 0.6px solid var(--primary-green, #8fc693);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}


.fx-signature::after {
  width: 110px;
  height: 110px;
  border-width: 0.8px;
}


.fx-signature:hover::before {
  animation: fx-circle 1.2s cubic-bezier(.25,.1,.25,1) forwards;
}

.fx-signature:hover::after {
  animation: fx-circle 1.4s cubic-bezier(.25,.1,.25,1) .2s forwards;
}


@keyframes fx-circle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.8) rotate(-10deg);
    border-color: transparent transparent transparent var(--primary-green);
  }
  30% {
    opacity: 1;
    border-color: var(--primary-green) transparent transparent transparent;
  }
  50% {
    border-color: var(--primary-green) var(--primary-green) transparent transparent;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
    border-color: var(--primary-green);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
  }
}





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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}


.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}


@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}




.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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


.hover-bounce {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-bounce:hover {
    animation: gentleBounce 0.6s ease;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(143, 198, 147, 0.4);
}


.hover-underline {
    position: relative;
    text-decoration: none;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-underline:hover::after {
    width: 100%;
}




.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-shimmer:hover::before {
    left: 100%;
}


@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(143, 198, 147, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(143, 198, 147, 0);
    }
}

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




.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom:hover img {
    transform: scale(1.1);
}


.img-parallax {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.img-grayscale img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.img-grayscale:hover img {
    filter: grayscale(0%);
}




.text-gradient-animate {
    background: linear-gradient(
        90deg,
        #8fc693,
        #1a3a3a,
        #8fc693
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}


@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing-effect {
    overflow: hidden;
    border-right: 2px solid #8fc693;
    white-space: nowrap;
    animation: typing 3s steps(40) 1s forwards,
               blink 0.75s step-end infinite;
}




.wave-divider {
    position: relative;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%238fc693'/%3E%3C/svg%3E") repeat-x;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}




.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}




@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}




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

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

.float-particle:nth-child(1) { animation-delay: 0s; }
.float-particle:nth-child(2) { animation-delay: 0.5s; }
.float-particle:nth-child(3) { animation-delay: 1s; }


.gradient-animate-bg {
    background: linear-gradient(
        -45deg,
        #f5f5f5,
        #e8f5e9,
        #f5f5f5,
        #e0f2f1
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


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

.counter-animate {
    animation: countUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}




.icon-rotate {
    transition: transform 0.3s ease;
}

.icon-rotate:hover {
    transform: rotate(15deg);
}


@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.icon-bounce:hover {
    animation: iconBounce 0.6s ease;
}




.card-tilt {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}


.card-flip {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-flip:hover {
    transform: rotateY(180deg);
}




@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease;
}


@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.heartbeat {
    animation: heartbeat 1.5s ease infinite;
}


@keyframes heartbeatslow {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.heartbeatslow {
    animation: heartbeat 4.5s ease infinite;
}




.will-animate {
    will-change: transform, opacity;
}


.animation-complete {
    will-change: auto;
}




@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}





.animated-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}


.animated-underline::after {
  content: '';
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8fc793;
  transition: width 0.3s ease;
}


.animated-underline:hover::after {
  width: 10px;
}




.animated-underline.center::after {
  left: 50%;
  transform: translateX(-50%);
}


.animated-underline.right::after {
  left: auto;
  right: 0;
}


.animated-underline.full::after {
  width: 0;
}

.animated-underline.full:hover::after {
  width: 100%;
}


.animated-underline.fast::after {
  transition: width 0.15s ease;
}


.animated-underline.slow::after {
  transition: width 0.5s ease;
}


.animated-underline.close::after {
  bottom: -5px;
}


.animated-underline.far::after {
  bottom: -15px;
}


.animated-underline.thick::after {
  height: 3px;
}


.animated-underline.thin::after {
  height: 1px;
}


.animated-underline.long:hover::after {
  width: 20px;
}


.animated-underline.short:hover::after {
  width: 5px;
}




.animated-underline.color-primary::after {
  background-color: var(--primary-color, #8fc793);
}

.animated-underline.color-secondary::after {
  background-color: var(--secondary-color, #333);
}

.animated-underline.color-black::after {
  background-color: #000;
}

.animated-underline.color-white::after {
  background-color: #fff;
}




.animated-underline.ease-in-out::after {
  transition: width 0.3s ease-in-out;
}


.animated-underline.bounce::after {
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.animated-underline.elastic::after {
  transition: width 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




.animated-underline.fade::after {
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.animated-underline.fade:hover::after {
  opacity: 1;
}


.animated-underline.glow::after {
  box-shadow: 0 0 8px #8fc793;
}


.animated-underline.rounded::after {
  border-radius: 2px;
}




.brxe-nav-menu .menu-item a.animated-underline::after {
  bottom: -8px;
}

.brxe-nav-menu .menu-item.current-menu-item a.animated-underline::after {
  width: 10px;
}



.animated-underline.active::after,
.animated-underline.current::after {
  width: 10px;
}



@media (max-width: 768px) {
  
  .animated-underline:hover::after {
    width: 8px;
  }
  
  
  .animated-underline::after {
    bottom: -8px;
  }
}


@media (hover: none) and (pointer: coarse) {
  .animated-underline:active::after {
    width: 10px;
  }
}








@media (prefers-reduced-motion: reduce) {
  .animated-underline::after {
    transition: none;
  }
  
  .animated-underline:hover::after {
    width: 10px;
  }
}


.animated-underline:focus::after {
  width: 10px;
}

.animated-underline:focus {
  outline: 2px solid #8fc793;
  outline-offset: 4px;
}



.animated-underline::after {
  will-change: width;
}



:root {
  --underline-color: #8fc793;
  --underline-height: 2px;
  --underline-width: 10px;
  --underline-distance: 10px;
  --underline-duration: 0.3s;
}


.animated-underline-custom::after {
  content: '';
  position: absolute;
  bottom: calc(var(--underline-distance) * -1);
  left: 0;
  width: 0;
  height: var(--underline-height);
  background-color: var(--underline-color);
  transition: width var(--underline-duration) ease;
}

.animated-underline-custom:hover::after {
  width: var(--underline-width);
}




.menu-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.menu-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8fc793;
  transition: width 0.3s ease;
}

.menu-underline:hover::after,
.menu-underline.active::after {
  width: 40px;
}


.button-underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.button-underline::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8fc793;
  transition: width 0.3s ease;
}

.button-underline:hover::after {
  width: 10px;
}


.heading-underline {
  position: relative;
  display: inline-block;
}

.heading-underline::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #8fc793;
  transition: width 0.4s ease;
}

.heading-underline:hover::after {
  width: 10px;
}


.Header__menu__logo {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}


.Header__menu__logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50%;
  height: 120%;
  background: var(--ycemporia-sage);
  border-radius: 100%;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
}


.Header__menu__logo:hover::before {
  transform: translate(-50%, -50%) scale(1);
}


.Header__menu__logo img {
  display: block;
  transition: opacity 0.3s ease 0.5s, transform 0.3s ease;
}

@keyframes leafFlutter {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25%       { transform: scale(1.05) rotate(-2deg); }
  50%       { transform: scale(1.08) rotate(2deg); }
  75%       { transform: scale(1.05) rotate(-1deg); }
}

.Header__menu__logo:hover img {
  animation: leafFlutter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
}


.Header__menu__logo::after {
  content: 'Home';
  font-family: 'Montserrat';
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 13px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
  z-index: 1;
}

.Header__menu__logo:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}