/* Sticky nav */
.sticky-nav-show {
    position: sticky;
    top: 64px; /* sama dengan h-16 = 64px navbar fixed */
    z-index: 40;
    background: white;
    border-bottom: 1px solid #b5d4f4;
}

/* Section scroll offset */
.section-anchor-show {
    scroll-margin-top: 64px;
}

/* Experience card hover */
.exp-card {
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.exp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(24, 95, 165, 0.15);
}

/* Number badge */
.exp-num {
    font-family: "Inter", sans-serif;
    font-style: italic;
}

/* Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 400px;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-icon {
    transition: transform 0.25s;
    display: inline-block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #e6f1fb;
}
::-webkit-scrollbar-thumb {
    background: #378add;
    border-radius: 3px;
}

/* Tab active */
.nav-link-show {
    position: relative;
}
.nav-link-show::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 0px;
    background: #ffffff;
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-link-show:hover::after,
.nav-link-show.active::after {
    transform: scaleX(1);
}

/* Itinerary day pill */
.day-pill {
    display: inline-block;
    background: #e6f1fb;
    color: #0c447c;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

/* Timeline line */
.timeline-line {
    border-left: 2px dashed #b5d4f4;
}
