:root {
    --primary: #2F80ED;
    --text: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    padding-bottom: 70px;
}

@media (min-width: 1024px) {
    body {
        padding-bottom: 0;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-slider {
    overflow: visible;
    background: transparent;
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    visibility: hidden;
    transform: translateX(24px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.promo-slide.active {
    opacity: 1;
    z-index: 10;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.promo-slide-image {
    filter: drop-shadow(0 24px 40px rgb(15 23 42 / 0.14));
}

.expert-detail-card {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f8fff9 100%);
}

.active-dot {
    background-color: #ffffff !important;
    width: 2.5rem !important;
    border-radius: 9999px;
}

.nav-item-active {
    color: var(--primary);
    font-weight: 700;
}
