/* ===== HIGHLIGHTS ===== */
.kj-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.kj-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.kj-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}
.kj-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kj-highlight-icon svg {
    width: 18px;
    height: 18px;
}

/* ===== ITINERARY ===== */
.kj-iti-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.kj-iti-tabs::-webkit-scrollbar { display: none; }
.kj-iti-day-tab-btn {
    padding: 10px 24px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: #64748b;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.kj-iti-day-tab-btn:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: #f0f7ff !important;
}
.kj-iti-day-tab-btn.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
    margin-left: 14px;
    border-left: 3px dashed #cbd5e1;
}
.itinerary-step {
    position: relative;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}
.itinerary-step:hover {
    background: #f0f7ff;
    border-color: #dbeafe;
}
.itinerary-step::before {
    content: '';
    position: absolute;
    left: -39px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
}
.itinerary-step h4,
.itinerary-step__time {
    font-size: 13px;
    color: var(--primary);
    margin: 0 0 4px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.itinerary-step p,
.itinerary-step__desc {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}
.itinerary-micro-cta {
    margin-top: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.itinerary-micro-cta a {
    color: #16a34a !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: all 0.2s ease !important;
}
.itinerary-micro-cta a:hover {
    color: #11823b !important;
    text-decoration: underline !important;
}

