/**
 * Travel Plan Page Styles (plan-voyage.html)
 * Tables replicating the Arrivées / Départs Kalemie documents.
 */

.plan-voyage-page {
    background: #f4f6fa;
}

/* Banner at top */
.plan-voyage-hero {
    position: relative;
    padding: 150px 20px 110px;
    background: #0b1f5e;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-voyage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/background/banner.png') center/cover no-repeat;
    filter: brightness(0.42) saturate(1.15) contrast(1.05);
    z-index: 0;
    transform: scale(1.05);
}
.plan-voyage-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(11,31,94,0.82) 0%, rgba(17,43,181,0.55) 50%, rgba(11,31,94,0.78) 100%),
        radial-gradient(circle at 80% 20%, rgba(248,161,0,0.30), transparent 50%);
    z-index: 1;
}
.plan-voyage-hero .hero-caption {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Archivo', sans-serif;
    color: #ffffff;
    padding: 0 16px;
}
.plan-voyage-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #f8a100, #ff8c00);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(248, 161, 0, 0.45);
    text-transform: uppercase;
}
.plan-voyage-hero .hero-caption h1 {
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(30px, 4.8vw, 56px);
    margin: 0 0 20px;
    line-height: 1.12;
    text-shadow: 0 4px 22px rgba(0,0,0,0.45);
    letter-spacing: -0.5px;
}
.plan-voyage-hero .hero-caption h1 span {
    color: #ffcf80;
}
.plan-voyage-hero .hero-caption p {
    color: #ffffff;
    font-size: clamp(15px, 1.5vw, 18px);
    max-width: 780px;
    margin: 0 auto 12px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    font-weight: 500;
}
.plan-voyage-hero .hero-caption p strong { color: #ffcf80; font-weight: 800; }
.plan-voyage-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.plan-voyage-hero .hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    color: #ffffff;
    backdrop-filter: blur(8px);
}
.plan-voyage-hero .hero-meta span i { color: #ffcf80; }

/* Intro strip */
.plan-voyage-intro {
    padding: 20px 0 0;
}
.plan-voyage-intro .legend {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Archivo', sans-serif;
    color: #0b1f5e;
    font-size: 13px;
}
.plan-voyage-intro .legend span {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #e1e6ef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.plan-voyage-intro .legend b { color: #18b486; }

/* Section blocks */
.plan-voyage-tables {
    padding: 40px 0 80px;
}
.plan-voyage-tables .tbl-block {
    max-width: 1100px;
    margin: 0 auto 50px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(17, 43, 181, 0.08);
    overflow: hidden;
}
.plan-voyage-tables .tbl-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: clamp(18px, 2.2vw, 24px);
    color: #0b1f5e;
    padding: 22px 26px 18px;
    margin: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-bottom: 3px solid #18b486;
}
.plan-voyage-tables .tbl-title.depart {
    border-bottom-color: #112bb5;
}
.plan-voyage-tables .tbl-title small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #7a869a;
    letter-spacing: 2px;
    margin-top: 4px;
    text-transform: uppercase;
}

.plan-voyage-tables .tbl-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plan-voyage-tables table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    min-width: 820px;
}
.plan-voyage-tables thead th {
    background: #18b486;
    color: #ffffff;
    text-align: left;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.plan-voyage-tables .tbl-block.depart thead th {
    background: #112bb5;
}

.plan-voyage-tables tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #eceff5;
    color: #24304a;
    vertical-align: middle;
}
.plan-voyage-tables tbody tr.alt td {
    background: #eff3f8;
}
.plan-voyage-tables tbody tr:hover td {
    background: #fff8e6;
}
.plan-voyage-tables tbody td.date,
.plan-voyage-tables tbody td.day {
    font-weight: 700;
    color: #0b1f5e;
}
.plan-voyage-tables tbody td.stars {
    letter-spacing: 2px;
    color: #f8a100;
    font-weight: 700;
    white-space: nowrap;
}
.plan-voyage-tables tbody td.empty {
    color: #b0b8c8;
    font-style: italic;
}

/* Type badges */
.pv-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: #eef2ff;
    color: #112bb5;
    white-space: nowrap;
}
.pv-badge.regulier    { background: #e6f7f1; color: #0f8a63; }
.pv-badge.ponctuel    { background: #fff3db; color: #a06c00; }
.pv-badge.potentiel   { background: #fde9df; color: #b4430a; }
.pv-badge.opportuniste{ background: #f0e6ff; color: #6534a0; }
.pv-badge.connexion   { background: #dff4fb; color: #116080; }
.pv-badge.hebdomadaire{ background: #eaf0ff; color: #112bb5; }
.pv-badge.faible      { background: #fde3e3; color: #a81f1f; }

/* Footer note */
.plan-voyage-note {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 26px;
    background: #ffffff;
    border-left: 4px solid #f8a100;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    color: #55627a;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.plan-voyage-note strong { color: #0b1f5e; }

/* Back to home button */
.plan-voyage-back {
    text-align: center;
    margin: 40px 0 0;
}
.plan-voyage-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #112bb5;
    color: #ffffff !important;
    border-radius: 30px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.plan-voyage-back a:hover {
    background: #f8a100;
    color: #0b1f5e !important;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .plan-voyage-hero { padding: 60px 15px 30px; }
    .plan-voyage-tables .tbl-block { margin: 0 15px 30px; border-radius: 10px; }
    .plan-voyage-tables .tbl-title { padding: 18px 18px 14px; }
    .plan-voyage-tables thead th,
    .plan-voyage-tables tbody td { padding: 10px 12px; font-size: 12.5px; }
    .plan-voyage-note { margin: 0 15px; }
}

/* ============================================================
   Sejour sections (Kalemie travel guide - Inzo na Beto)
   ============================================================ */
.pv-section {
    padding: 70px 0;
    font-family: 'Archivo', sans-serif;
}
.pv-section.alt { background: #ffffff; }
.pv-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.pv-section-header {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}
.pv-section-header .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(248, 161, 0, 0.12);
    color: #c47c00;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}
.pv-section-header h2 {
    color: #0b1f5e;
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 36px);
    margin: 0 0 14px;
    line-height: 1.2;
}
.pv-section-header h2 span { color: #18b486; }
.pv-section-header p {
    color: #55627a;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Airlines grid */
.pv-airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.pv-airline-card {
    background: #ffffff;
    border: 1px solid #e1e6ef;
    border-radius: 14px;
    padding: 26px 22px;
    text-align: center;
    transition: all 0.3s ease;
}
.pv-airline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(17, 43, 181, 0.12);
    border-color: #18b486;
}
.pv-airline-card .icon-wrap {
    width: 54px; height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18b486, #112bb5);
    display: grid; place-items: center;
    color: #ffffff; font-size: 22px;
}
.pv-airline-card h4 {
    color: #0b1f5e;
    font-weight: 800;
    font-size: 16px;
    margin: 0;
}

/* Routes */
.pv-routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.pv-route-group {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 22px;
    border-left: 4px solid #18b486;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.pv-route-group h4 {
    color: #0b1f5e;
    font-weight: 800;
    font-size: 16px;
    margin: 0 0 14px;
    display: flex; align-items: center; gap: 10px;
}
.pv-route-group h4 i { color: #f8a100; }
.pv-route-group ul { list-style: none; padding: 0; margin: 0; }
.pv-route-group li {
    padding: 10px 0;
    color: #24304a;
    font-size: 14px;
    border-bottom: 1px dashed #eceff5;
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
}
.pv-route-group li:last-child { border-bottom: none; }
.pv-route-group li i.fa-plane { color: #18b486; font-size: 11px; }
.pv-route-group li i.fa-arrow-right { color: #b0b8c8; font-size: 10px; }

/* Check list */
.pv-check-list {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
}
.pv-check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 10px;
    color: #24304a;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border-left: 3px solid #18b486;
}
.pv-check-list li i {
    color: #18b486;
    font-size: 16px;
    margin-top: 2px;
}

/* Hotel grid */
.pv-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
.pv-hotel-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 26px 24px;
    border-top: 4px solid #f8a100;
    box-shadow: 0 6px 18px rgba(17, 43, 181, 0.06);
    transition: all 0.3s ease;
}
.pv-hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(17, 43, 181, 0.14);
}
.pv-hotel-card h4 {
    color: #0b1f5e;
    font-weight: 800;
    font-size: 18px;
    margin: 0 0 14px;
    display: flex; align-items: center; gap: 10px;
}
.pv-hotel-card h4 i { color: #f8a100; font-size: 16px; }
.pv-hotel-card .hotel-info {
    color: #55627a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pv-hotel-card .hotel-info i {
    color: #18b486;
    margin-top: 4px;
    min-width: 16px;
}
.pv-hotel-card .hotel-info a {
    color: #112bb5;
    text-decoration: none;
    font-weight: 700;
}
.pv-hotel-card .hotel-info a:hover { color: #f8a100; }

/* Audience cards */
.pv-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.pv-audience-card {
    background: linear-gradient(135deg, #112bb5, #18b486);
    color: #ffffff !important;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}
.pv-audience-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 28px rgba(17, 43, 181, 0.25);
}
.pv-audience-card i {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffcf80;
}

/* Activities */
.pv-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}
.pv-activity-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(17, 43, 181, 0.10);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.pv-activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 43, 181, 0.18);
}
.pv-activity-card .pvh-header {
    padding: 26px 26px 22px;
    background: linear-gradient(135deg, #0b1f5e, #112bb5);
    color: #ffffff;
}
.pv-activity-card .pvh-header i {
    display: inline-block;
    font-size: 28px;
    color: #f8a100;
    margin-bottom: 14px;
}
.pv-activity-card .pvh-header h4 {
    margin: 0;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.3;
    color: #ffffff;
}
.pv-activity-card .pvb-body {
    padding: 24px 26px;
    flex: 1;
}
.pv-activity-card .pvb-body p {
    color: #55627a;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 14px;
}
.pv-activity-card .pvb-body .sub {
    color: #0b1f5e;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 10px;
}
.pv-activity-card .pvb-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pv-activity-card .pvb-body li {
    padding: 6px 0;
    color: #24304a;
    font-size: 13.5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}
.pv-activity-card .pvb-body li i {
    color: #18b486;
    font-size: 11px;
    margin-top: 6px;
}
.pv-activity-card .pvn-footer {
    padding: 14px 26px;
    background: rgba(248, 161, 0, 0.1);
    color: #a06c00;
    font-weight: 700;
    font-size: 12.5px;
    text-align: center;
    border-top: 1px solid #ffe9c2;
}

/* Contact block */
.pv-contact-wrap {
    padding: 80px 24px;
    background: #f4f6fa;
}
.pv-contact-block {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0b1f5e 0%, #112bb5 100%);
    border-radius: 22px;
    padding: 50px 40px;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pv-contact-block::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: rgba(248, 161, 0, 0.22);
    border-radius: 50%;
    filter: blur(12px);
}
.pv-contact-block::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    background: rgba(24, 180, 134, 0.22);
    border-radius: 50%;
    filter: blur(12px);
}
.pv-contact-block > * { position: relative; z-index: 1; }
.pv-contact-block .eyebrow-dark {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(248, 161, 0, 0.22);
    color: #ffcf80;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}
.pv-contact-block h3 {
    font-weight: 800;
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 10px;
}
.pv-contact-block h3 span { color: #ffcf80; }
.pv-contact-block .sub {
    color: #cfd4e6;
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
}
.pv-contact-block .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 30px 0 24px;
    text-align: left;
}
.pv-contact-block .contact-item {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
}
.pv-contact-block .contact-item .label {
    color: #ffcf80;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pv-contact-block .contact-item a,
.pv-contact-block .contact-item .value {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    word-break: break-word;
    display: block;
}
.pv-contact-block .contact-item a:hover { color: #ffcf80; }
.pv-contact-block .services-title {
    color: #ffcf80;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 20px 0 12px;
}
.pv-contact-block .services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.pv-contact-block .services-list span {
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.18);
}

/* Prep intro block */
.pv-intro-block {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 44px;
    box-shadow: 0 10px 30px rgba(17, 43, 181, 0.08);
    font-family: 'Archivo', sans-serif;
    border-left: 6px solid #f8a100;
}
.pv-intro-block .date-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #18b486, #112bb5);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}
.pv-intro-block h2 {
    color: #0b1f5e;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 16px;
    line-height: 1.2;
}
.pv-intro-block p {
    color: #55627a;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
}
.pv-intro-block p:last-child { margin-bottom: 0; }
.pv-intro-block strong { color: #0b1f5e; font-weight: 700; }

/* Responsive sejour sections */
@media (max-width: 767px) {
    .pv-section { padding: 50px 0; }
    .pv-section .container { padding: 0 18px; }
    .pv-intro-block { padding: 30px 24px; margin: 0 15px; }
    .pv-contact-wrap { padding: 50px 16px; }
    .pv-contact-block { padding: 40px 24px; }
    .plan-voyage-hero { padding: 110px 16px 70px; min-height: 380px; }
}

/* ============================================================
   Header overrides for plan-voyage (flags + menu spacing)
   Circular language switcher matching index.html exactly
   ============================================================ */
body.plan-voyage-page .main-header .header-language-switcher {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    line-height: 1;
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn:hover {
    transform: scale(1.1);
    border-color: #f8b034 !important;
    box-shadow: 0 4px 12px rgba(248, 176, 52, 0.3);
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn.active {
    border-color: #f8b034 !important;
    background: linear-gradient(135deg, #f8b034 0%, #f59f35 100%) !important;
    box-shadow: 0 4px 15px rgba(248, 176, 52, 0.4);
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn.active:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(248, 176, 52, 0.5);
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn img.flag-icon-header {
    width: 28px !important;
    height: 28px !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease;
    display: block;
}
body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn:hover img.flag-icon-header {
    transform: rotate(5deg) scale(1.05);
}

/* Sticky header language switcher (same circular look) */
body.plan-voyage-page .sticky-header .header-language-switcher .lang-switch-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
}
body.plan-voyage-page .sticky-header .header-language-switcher .lang-switch-btn img.flag-icon-header {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
}

/* Responsive parity with language-switcher.css */
@media (max-width: 768px) {
    body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn {
        width: 35px !important;
        height: 35px !important;
    }
    body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn img.flag-icon-header {
        width: 24px !important;
        height: 24px !important;
    }
}
@media (max-width: 480px) {
    body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn {
        width: 32px !important;
        height: 32px !important;
        border-width: 1.5px !important;
    }
    body.plan-voyage-page .main-header .header-language-switcher .lang-switch-btn img.flag-icon-header {
        width: 22px !important;
        height: 22px !important;
    }
}

/* Menu spacing & alignment */
body.plan-voyage-page .main-header .main-menu .navigation > li {
    margin: 0 4px;
}
body.plan-voyage-page .main-header .main-menu .navigation > li > a {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
}
body.plan-voyage-page .main-header .main-menu .navigation > li > a:hover,
body.plan-voyage-page .main-header .main-menu .navigation > li.current > a {
    color: #f8a100;
    background: rgba(248, 161, 0, 0.08);
}
body.plan-voyage-page .sticky-header .main-menu .navigation > li { margin: 0 3px; }
body.plan-voyage-page .sticky-header .main-menu .navigation > li > a {
    padding: 8px 12px;
    font-size: 13.5px;
}

/* Force black text everywhere except on dark backgrounds */
body.plan-voyage-page .pv-section-header h2,
body.plan-voyage-page .pv-intro-block h2,
body.plan-voyage-page .pv-airline-card h4,
body.plan-voyage-page .pv-route-group h4,
body.plan-voyage-page .pv-hotel-card h4,
body.plan-voyage-page .plan-voyage-tables .tbl-title {
    color: #0b1f5e;
}
body.plan-voyage-page .pv-section-header p,
body.plan-voyage-page .pv-intro-block p,
body.plan-voyage-page .pv-check-list li,
body.plan-voyage-page .pv-route-group li,
body.plan-voyage-page .pv-hotel-card .hotel-info,
body.plan-voyage-page .plan-voyage-note {
    color: #1a2234;
}
body.plan-voyage-page .pv-activity-card .pvb-body p,
body.plan-voyage-page .pv-activity-card .pvb-body li {
    color: #1a2234;
}

/* Footer spacing override (page-wrapper end) */
body.plan-voyage-page .main-footer { position: relative; }
