/* UGC Custom Nav */
.ugc-nav {
    background-color: white;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(10px);
}

.ugc-nav__link {
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ugc-nav__link:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
}

.ugc-nav.scrolled {
    position: fixed;
    top: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 1.25rem));
    border: 1px solid rgba(229, 231, 235, 0.75);
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    background: linear-gradient(135deg,
            rgba(248, 250, 252, 0.95) 0%,
            rgba(224, 242, 254, 0.95) 30%,
            rgba(243, 232, 255, 0.94) 68%,
            rgba(252, 231, 243, 0.94) 100%);
    background-size: 200% 200%;
    animation: ugcGradientShift 14s ease infinite;
    backdrop-filter: blur(12px);
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 767px) {
    .ugc-nav.scrolled {
        width: calc(100% - 0.75rem);
        top: 0.45rem;
        border-radius: 14px;
    }
}

/* Slides */
.ugc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ugc-slide.active {
    opacity: 1;
    position: relative;
}

/* Dots */
.ugc-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #cbd5f5, #e2e8f0);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ugc-dot.active {
    background: linear-gradient(135deg, #93c5fd, #fde68a, #f9a8d4);
    opacity: 1;
    transform: scale(1.2);
}

#contactModal>div:last-child {
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

