/* =============================================================================
   Travel Page — Light Theme Visa-Free Destinations
   ============================================================================= */

/* Hide mobile elements on desktop */
@media (min-width: 769px) {
    .mobile-top-bar { display: none !important; }
    .hamburger-menu { display: none !important; }
}

/* ---- Layout ---- */
.travel-main {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-main);
    scroll-behavior: smooth;
}

/* ---- Hero Section ---- */
.travel-hero {
    position: relative;
    padding: 60px 48px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    overflow: hidden;
}

.travel-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.travel-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.travel-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.travel-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.travel-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.travel-hero h1 span {
    font-weight: 300;
    opacity: 0.9;
}

.travel-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

.travel-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.travel-stat {
    text-align: center;
}

.travel-stat-value {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.travel-stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Region Filter Chips ---- */
.travel-filters {
    padding: 24px 48px 0;
    background: var(--bg-main);
}

.travel-filters h2 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin: 0 0 12px;
}

.travel-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.travel-chip {
    padding: 8px 18px;
    border-radius: 24px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.travel-chip:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: var(--bg-light);
}

.travel-chip.active {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* ---- Trending / Featured Carousel ---- */
.travel-trending {
    padding: 32px 48px;
}

.travel-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.travel-section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.carousel-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.trending-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.trending-carousel::-webkit-scrollbar {
    display: none;
}

/* Shorts-style: narrow portrait thumb + caption (YouTube Shorts shelf) */
.trending-card {
    flex: 0 0 132px;
    width: 132px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trending-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trending-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: var(--bg-secondary);
}

.trending-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.trending-card:hover .trending-card-media img {
    transform: scale(1.04);
}

.trending-card-caption {
    padding: 8px 8px 10px;
    min-height: 0;
}

.trending-card-caption h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 4px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-card-caption p {
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-card-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: calc(100% - 12px);
    text-align: right;
    line-height: 1.2;
}

.badge-visa-free {
    background: rgba(16, 185, 129, 0.88);
    color: #fff;
}

.badge-visa-on-arrival {
    background: rgba(245, 158, 11, 0.88);
    color: #fff;
}

.badge-e-visa {
    background: rgba(59, 130, 246, 0.88);
    color: #fff;
}

/* ---- Destination Grid ---- */
.travel-destinations {
    padding: 8px 48px 48px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
    gap: 12px;
    justify-items: start;
}

.dest-card {
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.22s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 176px;
}

.dest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
    border-color: var(--border-color);
}

.dest-card-img {
    aspect-ratio: 9 / 16;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dest-card-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-card-placeholder-icon {
    font-size: 1.75rem;
    opacity: 0.85;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.04);
}

.dest-card-img .visa-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.dest-card-body {
    padding: 10px 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dest-card-region {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667eea;
    margin-bottom: 4px;
}

.dest-card-body h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-body .dest-subtitle {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin: 0 0 8px;
    line-height: 1.35;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.dest-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 10px;
    color: var(--text-tertiary);
    line-height: 1.25;
}

.dest-meta-item .icon {
    font-size: 11px;
    flex-shrink: 0;
}

/* ---- Visa Type Indicators ---- */
.visa-type-free {
    color: #10b981;
}

.visa-type-arrival {
    color: #f59e0b;
}

.visa-type-evisa {
    color: #3b82f6;
}

/* ---- Stats Bar ---- */
.travel-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px 48px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-box {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-secondary);
}

.stat-box-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-box-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ---- Scroll Animations ---- */
.dest-card {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dest-card:nth-child(1) { animation-delay: 0s; }
.dest-card:nth-child(2) { animation-delay: 0.05s; }
.dest-card:nth-child(3) { animation-delay: 0.1s; }
.dest-card:nth-child(4) { animation-delay: 0.15s; }
.dest-card:nth-child(5) { animation-delay: 0.2s; }
.dest-card:nth-child(6) { animation-delay: 0.25s; }
.dest-card:nth-child(7) { animation-delay: 0.3s; }
.dest-card:nth-child(8) { animation-delay: 0.35s; }
.dest-card:nth-child(9) { animation-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .travel-hero { padding: 40px 32px 36px; }
    .travel-hero h1 { font-size: 2.2rem; }
    .travel-filters, .travel-trending, .travel-destinations { padding-left: 32px; padding-right: 32px; }
    .travel-stats-bar { padding: 20px 32px; }
    .trending-card { flex-basis: 128px; width: 128px; }
}

@media (max-width: 768px) {
    .travel-hero {
        padding: 32px 20px 28px;
    }
    .travel-hero h1 {
        font-size: 1.8rem;
    }
    .travel-hero-stats {
        gap: 20px;
    }
    .travel-stat-value { font-size: 1.5rem; }
    .travel-filters,
    .travel-trending,
    .travel-destinations {
        padding-left: 20px;
        padding-right: 20px;
    }
    .travel-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 20px;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dest-card {
        max-width: none;
        width: 100%;
    }
    .trending-card {
        flex-basis: 124px;
        width: 124px;
    }
}

@media (max-width: 480px) {
    .travel-hero h1 { font-size: 1.5rem; }
    .travel-hero-subtitle { font-size: 0.95rem; }
    .trending-card {
        flex-basis: 118px;
        width: 118px;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

/* =============================================================================
   Tab Navigation
   ============================================================================= */

.travel-tabs {
    display: flex;
    gap: 4px;
    padding: 12px 48px;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 10;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    -webkit-overflow-scrolling: touch;
}

.travel-tabs::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.travel-tab {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.travel-tab:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.travel-tab.active {
    background: #667eea;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.travel-tab-panel {
    display: none;
}

.travel-tab-panel.active {
    display: block;
}

@media (max-width: 768px) {
    .travel-tabs { padding: 10px 20px; }
    .travel-tab { padding: 8px 16px; font-size: 13px; }
}

/* =============================================================================
   Passport Guide Section
   ============================================================================= */

.passport-guide {
    padding: 48px 48px 56px;
    border-top: 1px solid var(--border-light);
}

.passport-guide-intro {
    max-width: 680px;
    margin-bottom: 28px;
}

.passport-guide-intro p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =============================================================================
   Safari Ndani — Experience Cards + Services
   ============================================================================= */

.local-experiences {
    margin-top: 10px;
}

.local-experiences-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 2px 6px;
    scrollbar-width: none;
}

.local-experiences-scroll::-webkit-scrollbar {
    display: none;
}

/* Compact portrait tiles — Shorts-like shelf */
.experience-card {
    flex: 0 0 156px;
    width: 156px;
    min-height: 0;
    aspect-ratio: 9 / 16;
    max-height: 300px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 10px 10px 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.experience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.experience-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 200px at 50% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
                linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.06));
    pointer-events: none;
}

.experience-emoji {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.experience-body {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 100%;
}

.experience-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.2px;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.experience-subtitle {
    font-size: 11px;
    line-height: 1.4;
    margin: 0 0 10px;
    opacity: 0.92;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.experience-subtitle strong {
    font-weight: 800;
}

.experience-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.experience-cta:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.36);
}

.experience-green {
    background: linear-gradient(135deg, #0e6b3f 0%, #064b2c 60%, #043a22 100%);
}

.experience-sunset {
    background: linear-gradient(135deg, #cc5a08 0%, #b01f1f 55%, #7a0f2a 100%);
}

.experience-night {
    background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #0b1220 100%);
}

.experience-street {
    background: linear-gradient(135deg, #7c2d12 0%, #b45309 55%, #92400e 100%);
}

.experience-ocean {
    background: linear-gradient(135deg, #0b4fb3 0%, #0b2c7a 60%, #081a4a 100%);
}

.local-services {
    margin-top: 28px;
}

.travel-section-header--compact {
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    border-radius: 16px;
    padding: 14px 14px 12px;
    cursor: pointer;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--border-color);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    grid-row: span 2;
}

.service-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.service-subtitle {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.25;
}

@media (max-width: 1024px) {
    .experience-card {
        flex-basis: 148px;
        width: 148px;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .local-experiences-scroll {
        padding-left: 2px;
        padding-right: 2px;
    }
    .experience-card {
        flex-basis: 142px;
        width: 142px;
        padding: 9px;
        border-radius: 12px;
    }
    .experience-title {
        font-size: 13px;
    }
    .experience-subtitle {
        font-size: 10.5px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Guide Cards */
.guide-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.guide-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.guide-icon {
    font-size: 1.5rem;
}

.guide-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Checklist */
.guide-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.guide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.guide-checklist .check {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Steps */
.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 16px;
    position: relative;
    padding-bottom: 24px;
}

.step:last-child {
    padding-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 6px 0 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.step-content a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.step-content a:hover {
    text-decoration: underline;
}

/* Cost & Timeline Row */
.guide-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.guide-card-compact {
    margin-bottom: 0;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-value {
    font-weight: 700;
    color: var(--text-primary);
}

.cost-total {
    background: #f0fdf4;
    margin: 8px -14px -8px;
    padding: 14px;
    border-radius: 10px;
    border-bottom: none;
}

.cost-total .cost-value {
    color: #10b981;
    font-size: 1.1rem;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-label {
    color: var(--text-secondary);
}

.timeline-value {
    font-weight: 700;
    color: #667eea;
    background: #f0f0ff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Warning Notice */
.guide-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid #fde68a;
    border-radius: 12px;
    margin-bottom: 20px;
}

.notice-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.guide-notice p {
    font-size: 0.9rem;
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

/* Source Link */
.guide-source {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.guide-source a {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.guide-source a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.source-author {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* Responsive */
@media (max-width: 768px) {
    .passport-guide { padding: 32px 20px 40px; }
    .guide-card { padding: 20px; }
    .guide-checklist { grid-template-columns: 1fr; }
    .guide-cards-row { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   Benefits Grid (Faida ya Kusafiri)
   ============================================================================= */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    border-color: var(--border-color);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}
