@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana/Dana-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana/Dana-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana/Dana-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Dana';
    src: url('../fonts/Dana/Dana-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
body { font-family: 'Dana', sans-serif; scroll-behavior: smooth; }
.bg-primary { background-color: #ab0000; }
.text-primary { color: #ab0000; }
.border-primary { border-color: #ab0000; }

/* Ken Burns Effect */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.kenburns { animation: kenburns 8s ease-out forwards; }

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.float { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 6s ease-in-out infinite; animation-delay: 2s; }

/* Pulse Animation */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(171, 0, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(171, 0, 0, 0.8); }
}
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* Scroll Indicator */
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}
.scroll-bounce { animation: scroll-bounce 2s ease-in-out infinite; }

/* Scroll Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
}
.animate-on-scroll.animated {
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-up.animated { animation-name: fadeInUp; }
.fade-in-down.animated { animation-name: fadeInDown; }
.fade-in-right.animated { animation-name: fadeInRight; }
.fade-in-left.animated { animation-name: fadeInLeft; }
.fade-in.animated { animation-name: fadeIn; }
.scale-in.animated { animation-name: scaleIn; }
.slide-in-up.animated { animation-name: slideInUp; }

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Hover Animations */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Card Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}
.card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.card-shine:hover::before {
    left: 100%;
}

/* Smooth Image Zoom */
.img-zoom {
    overflow: hidden;
}
.img-zoom img {
    transition: transform 0.5s ease;
}
.img-zoom:hover img {
    transform: scale(1.05);
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple::after {
    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 ease, height 0.6s ease;
}
.btn-ripple:hover::after {
    width: 300px;
    height: 300px;
}

/* Icon Bounce */
.icon-bounce:hover i {
    animation: iconBounce 0.5s ease;
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Gradient Text Animation */
.gradient-text-animate {
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Testimonials Swiper */
.testimonial-swiper {
    width: 360px;
    height: 420px;
}
@media (min-width: 768px) {
    .testimonial-swiper {
        width: 400px;
        height: 450px;
    }
}
.testimonial-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    padding: 50px 35px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.testimonial-swiper .swiper-slide::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: rgba(171, 0, 0, 0.15);
}
.testimonial-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(171, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.testimonial-swiper .swiper-slide-shadow {
    border-radius: 2rem;
    background: rgba(0, 0, 0, 0.3);
}
.testimonial-swiper .swiper-slide-active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Alpine.js cloak */
[x-cloak] { display: none !important; }
