/* ───────────── BASE ───────────── */
::selection {
    background: rgba(13, 110, 253, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
    background: #1e1e2a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2a2a3a;
}

html {
    scroll-behavior: smooth;
}

/* ───────────── NAV LINKS ───────────── */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #9ca3af;
    border-radius: 9999px;
    transition: color 0.3s, background-color 0.3s;
}
.nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #9ca3af;
    border-radius: 0.75rem;
    transition: color 0.3s, background-color 0.3s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* ───────────── REVEAL ANIMATIONS ───────────── */
.reveal-section,
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element {
    transition-delay: 0.1s;
}

.reveal-section.visible,
.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-element:nth-child(2) { transition-delay: 0.2s; }
.reveal-element:nth-child(3) { transition-delay: 0.3s; }
.reveal-element:nth-child(4) { transition-delay: 0.4s; }
.reveal-element:nth-child(5) { transition-delay: 0.5s; }
.reveal-element:nth-child(6) { transition-delay: 0.6s; }

/* ───────────── FAQ ICON TRANSITION ───────────── */
.faq-icon {
    transition: transform 0.3s ease;
}

/* ───────────── SWIPER OVERRIDES ───────────── */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
}
.swiper-pagination-bullet-active {
    background: #0d6efd !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ───────────── FORM FOCUS ───────────── */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.2);
}

select option {
    background: #13131a;
    color: #e5e7eb;
}
