/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Card Hover Animations */
.card {
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(152, 50, 76, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::after {
    opacity: 1;
}

.card__image img {
    transition: transform 0.5s ease;
}

.card:hover .card__image img {
    transform: scale(1.05);
}

/* Button Hover Effects */
.btn--primary:hover {
    background: #9C3B56;
}

.btn--login:hover {
    background: rgba(152, 50, 76, 0.1);
}

/* Navigation Link Hover Effect */
.nav__list a {
    position: relative;
}

.nav__list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

.nav__list a:hover::after {
    width: 100%;
}

/* Service Card Hover Effects */
.service-card {
    position: relative;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    transition: transform 0.3s ease;
}

.quote {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Button Secondary Hover Effect */
.btn--secondary:hover {
    background: rgba(152, 50, 76, 0.1);
}

.service-card .btn--secondary {
    max-width: 300px;
    width: 100%;
    border-radius: 18px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.service-card .btn--secondary:hover {
    background: #6A2135;
    color: var(--gold-color);
}