:root {
    --animation-duration-fast: 0.3s;
    --animation-duration-normal: 0.6s;
    --animation-duration-slow: 0.9s;
    --animation-duration-slower: 1.2s;
    --animation-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --animation-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--animation-duration-normal) var(--animation-easing),
                transform var(--animation-duration-normal) var(--animation-easing);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--animation-duration-normal) var(--animation-easing),
                transform var(--animation-duration-normal) var(--animation-easing);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--animation-duration-normal) var(--animation-easing),
                transform var(--animation-duration-normal) var(--animation-easing);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--animation-duration-normal) var(--animation-easing),
                transform var(--animation-duration-normal) var(--animation-easing);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity var(--animation-duration-slow) var(--animation-easing);
}

.reveal-fade.revealed {
    opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }


.hero-banner {
    overflow: hidden;
}

.hero-banner__content {
    animation: heroFadeIn 1.2s var(--animation-easing) forwards;
}

.hero-banner__content h1 {
    animation: heroTitleSlide 1s var(--animation-easing) 0.3s both;
}

.hero-banner__content p {
    animation: heroTextFade 1s var(--animation-easing) 0.5s both;
}

.hero-banner__content .primary-button {
    animation: heroButtonPop 0.8s var(--animation-easing-bounce) 0.7s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.3em;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

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

@keyframes heroButtonPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-parallax {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

@media (max-width: 768px) {
    .hero-parallax {
        background-attachment: scroll;
    }
}

.image-reveal {
    overflow: hidden;
    position: relative;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 154, 101, 0.3), transparent);
    transition: left 0.7s var(--animation-easing);
    z-index: 2;
}

.image-reveal:hover::before {
    left: 100%;
}

.image-reveal img {
    transition: transform 0.7s var(--animation-easing);
}

.image-reveal:hover img {
    transform: scale(1.08);
}

.image-zoom {
    overflow: hidden;
    position: relative;
}

.image-zoom img {
    transition: transform 0.8s var(--animation-easing);
}

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

.image-golden-hover {
    position: relative;
    overflow: hidden;
}

.image-golden-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(187, 154, 101, 0) 0%, rgba(187, 154, 101, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--animation-easing);
}

.image-golden-hover:hover::after {
    opacity: 1;
}

.card-lift {
    transition: transform 0.4s var(--animation-easing),
                box-shadow 0.4s var(--animation-easing);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(64, 50, 38, 0.15);
}

.card-subtle {
    transition: transform 0.3s var(--animation-easing),
                box-shadow 0.3s var(--animation-easing);
}

.card-subtle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(64, 50, 38, 0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.floating-slow {
    animation: floating 4s ease-in-out infinite;
}

.floating-delayed {
    animation: floating 3s ease-in-out 1.5s infinite;
}

.text-reveal {
    overflow: hidden;
}

.text-reveal-line {
    transform: translateY(100%);
    animation: textRevealUp 0.8s var(--animation-easing) forwards;
}

@keyframes textRevealUp {
    to {
        transform: translateY(0);
    }
}

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

.underline-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color-100);
    transition: width 0.4s var(--animation-easing);
}

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

.text-shimmer {
    background: linear-gradient(90deg, 
        var(--secondary-color-100) 0%, 
        #e0c89b 50%, 
        var(--secondary-color-100) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.stat-number {
    display: inline-block;
    animation: countUp 2s var(--animation-easing) forwards;
}

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

.list-animate li {
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlide 0.5s var(--animation-easing) forwards;
}

.list-animate li:nth-child(1) { animation-delay: 0.1s; }
.list-animate li:nth-child(2) { animation-delay: 0.2s; }
.list-animate li:nth-child(3) { animation-delay: 0.3s; }
.list-animate li:nth-child(4) { animation-delay: 0.4s; }
.list-animate li:nth-child(5) { animation-delay: 0.5s; }
.list-animate li:nth-child(6) { animation-delay: 0.6s; }

@keyframes listItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pulse:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s;
}

.btn-shine:hover::after {
    left: 125%;
}

.cta__card {
    transition: transform 0.5s var(--animation-easing),
                box-shadow 0.5s var(--animation-easing);
}

.cta__cards-group:hover .cta__card--1 {
    transform: rotate(-18deg) translateY(-5px);
}

.cta__cards-group:hover .cta__card--2 {
    transform: rotate(10deg) translateY(-10px) scale(1.02);
}

.cta__cards-group:hover .cta__card--3 {
    transform: rotate(26deg) translateX(10px);
}

/* Customer Journey Timeline Animations */
.customer-journey__phases {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--animation-easing),
                transform 0.7s var(--animation-easing);
}

.customer-journey__phases.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Step number animation */
.customer-journey__step-number {
    transform: scale(0);
    transition: transform 0.5s var(--animation-easing-bounce);
}

.customer-journey__phases.revealed .customer-journey__step-number {
    transform: scale(1);
}

@media (min-width: 1024px) {
    .customer-journey__phases.revealed .customer-journey__step-number {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Content card animation */
.customer-journey__phase--content {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s var(--animation-easing) 0.2s,
                transform 0.6s var(--animation-easing) 0.2s;
}

.customer-journey__phases.revealed .customer-journey__phase--content {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .customer-journey__phases.phase--right .customer-journey__phase--content {
        transform: translateX(30px);
    }
    
    .customer-journey__phases.phase--right.revealed .customer-journey__phase--content {
        transform: translateX(0);
    }
}

/* Image animations */
.customer-journey__primary--image {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s var(--animation-easing) 0.3s,
                transform 0.6s var(--animation-easing) 0.3s;
}

.customer-journey__phases.revealed .customer-journey__primary--image {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.customer-journey__secondary--image {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s var(--animation-easing) 0.4s,
                transform 0.6s var(--animation-easing) 0.4s;
}

.customer-journey__phases.revealed .customer-journey__secondary--image {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Phase tag animation */
.customer-journey__phase-tag {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s var(--animation-easing) 0.3s,
                transform 0.4s var(--animation-easing) 0.3s;
}

.customer-journey__phases.revealed .customer-journey__phase-tag {
    opacity: 1;
    transform: translateY(0);
}


/* Timeline line animation */
.customer-journey__timeline::before {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s var(--animation-easing);
}

.customer-journey__timeline.animated::before {
    transform: scaleY(1);
}

/* List items stagger animation */
.customer-journey__phase--list li {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s var(--animation-easing),
                transform 0.4s var(--animation-easing);
}

.customer-journey__phases.revealed .customer-journey__phase--list li {
    opacity: 1;
    transform: translateX(0);
}

.customer-journey__phases.revealed .customer-journey__phase--list li:nth-child(1) { transition-delay: 0.4s; }
.customer-journey__phases.revealed .customer-journey__phase--list li:nth-child(2) { transition-delay: 0.5s; }
.customer-journey__phases.revealed .customer-journey__phase--list li:nth-child(3) { transition-delay: 0.6s; }
.customer-journey__phases.revealed .customer-journey__phase--list li:nth-child(4) { transition-delay: 0.7s; }
.customer-journey__phases.revealed .customer-journey__phase--list li:nth-child(5) { transition-delay: 0.8s; }

@media (min-width: 1024px) {
    .customer-journey__phases.phase--left .customer-journey__phase--list li {
        transform: translateX(15px);
    }
    
    .customer-journey__phases.phase--left.revealed .customer-journey__phase--list li {
        transform: translateX(0);
    }
}

.photo-gallery__item {
    transition: transform 0.4s var(--animation-easing),
                opacity 0.4s var(--animation-easing);
}

.photo-gallery__image-wrapper {
    position: relative;
}

.photo-gallery__image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(187, 154, 101, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--animation-easing);
    z-index: 1;
    pointer-events: none;
}

.photo-gallery__image-wrapper:hover::before {
    opacity: 1;
}

.photo-gallery__filter {
    position: relative;
    overflow: hidden;
}

.photo-gallery__filter::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color-100);
    transition: width 0.3s var(--animation-easing), left 0.3s var(--animation-easing);
}

.photo-gallery__filter:hover::before,
.photo-gallery__filter--active::before {
    width: 100%;
    left: 0;
}

.testimonial__slider .swiper-slide {
    transition: opacity 0.5s var(--animation-easing);
}

.testimonial__star {
    transition: transform 0.3s var(--animation-easing-bounce),
                color 0.3s var(--animation-easing);
}

.testimonial__star.active {
    animation: starPop 0.4s var(--animation-easing-bounce);
}

@keyframes starPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.testimonial__author-image {
    transition: transform 0.4s var(--animation-easing),
                box-shadow 0.4s var(--animation-easing);
}

.testimonial__author:hover .testimonial__author-image {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(187, 154, 101, 0.3);
}

.info-section__media {
    transition: transform 0.5s var(--animation-easing);
}

.info-section:hover .info-section__media {
    transform: scale(1.02);
}

.info-section__media-image {
    transition: transform 0.8s var(--animation-easing);
}

.info-section:hover .info-section__media-image {
    transform: scale(1.05);
}

.experience-stats__container {
    position: relative;
    overflow: hidden;
}

.experience-stats__container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(187, 154, 101, 0.1) 0%, transparent 70%);
    animation: statsGlow 5s ease-in-out infinite;
}

@keyframes statsGlow {
    0%, 100% {
        transform: translate(-30%, -30%);
    }
    50% {
        transform: translate(30%, 30%);
    }
}

.experience-stats__container > div {
    position: relative;
    z-index: 1;
}

.contact__form input,
.contact__form textarea {
    transition: border-color 0.3s var(--animation-easing),
                box-shadow 0.3s var(--animation-easing),
                transform 0.3s var(--animation-easing);
}

.contact__form input:focus,
.contact__form textarea:focus {
    box-shadow: 0 0 0 3px rgba(187, 154, 101, 0.2);
    transform: translateY(-2px);
}

.contact__form button {
    transition: transform 0.3s var(--animation-easing),
                box-shadow 0.3s var(--animation-easing),
                background-color 0.3s var(--animation-easing) !important;
}

.contact__form button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(187, 154, 101, 0.4) !important;
}

.tabs-content__tab {
    transition: all 0.3s var(--animation-easing);
    position: relative;
}

.tabs-content__tab::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color-100);
    transition: height 0.3s var(--animation-easing);
}

.tabs-content__tab:hover::before,
.tabs-content__tab--active::before {
    height: 100%;
}

.decor-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color-100), transparent);
    animation: decorExpand 1s var(--animation-easing) forwards;
}

@keyframes decorExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.decor-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.decor-dots span {
    width: 8px;
    height: 8px;
    background: var(--secondary-color-100);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.decor-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.decor-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.skeleton-loading {
    background: linear-gradient(90deg, 
        var(--secondary-color-600) 25%, 
        var(--secondary-color-500) 50%, 
        var(--secondary-color-600) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

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

.page-transition {
    animation: pageIn 0.6s var(--animation-easing) forwards;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-fade {
        opacity: 1;
        transform: none;
    }
}

