/* ============================================================
   Edutrain CMS — Main Stylesheet
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/* ---- CSS Variables ---- */
:root {
    --font-heading: "Cormorant Garamond", ui-serif, Georgia, serif;
    --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
    --bg: #F5F0E9;
    --fg: #1A1A1A;
    --primary: #1E4A3E;
    --primary-fg: #F8F0E1;
    --secondary: #EBE1D1;
    --secondary-fg: #1E4A3E;
    --muted: #F0E8DB;
    --muted-fg: #556B63;
    --accent: #C4944A;
    --accent-fg: #F8F0E1;
    --destructive: #DC2626;
    --border: #DBD1C0;
    --card: #FFFFFF;
    --radius: 12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv01";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    color: var(--fg);
}

/* ---- Layout ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.section {
    padding: 100px 0;
}
.section--primary {
    background: var(--primary);
    color: var(--primary-fg);
}
.section--primary .section-label { color: var(--accent); }
.section--primary .section-title,
.section--primary .section-subtitle { color: var(--primary-fg); }
.section--primary .section-subtitle { color: rgba(248,240,225,0.8); }
.section--muted { background: var(--muted); }

/* ---- Custom Classes ---- */
.horizon-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border: none;
    margin: 48px 0;
}
.indochine-frame { border-radius: 120px 0; overflow: hidden; }
.text-shadow-luxe { text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.topo-watermark {
    background-image:
        radial-gradient(circle at 20% 30%, hsl(168 33% 18% / 0.04) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, hsl(37 43% 58% / 0.05) 0, transparent 40%);
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    margin-bottom: 24px;
    max-width: 800px;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-fg);
    max-width: 640px;
    margin-bottom: 40px;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(245,240,233,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 12px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.025em;
    color: #fff;
    transition: color 0.3s;
}
.nav.scrolled .nav__logo-text { color: var(--primary); }
.nav__logo-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-left: 4px;
    margin-top: -2px;
}
.nav__logo-tagline {
    font-weight: 300;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}
.nav.scrolled .nav__logo-tagline { color: var(--primary); }
.nav__links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}
.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.nav.scrolled .nav__link { color: var(--fg); }
.nav__link:hover { color: var(--accent); }

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    overflow: hidden;
}
.lang-switcher__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 8px 12px;
    border-radius: 0;
    transition: all 0.2s;
    text-decoration: none;
}
.lang-switcher__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-switcher__link.active { color: var(--accent-fg); background: var(--accent); }
.lang-switcher__sep { display: none; }
.nav.scrolled .lang-switcher { border-color: var(--border); background: transparent; }
.nav.scrolled .lang-switcher__link { color: var(--muted-fg); }
.nav.scrolled .lang-switcher__link.active { color: var(--accent-fg); background: var(--accent); }
.lang-switcher--mobile {
    padding: 0;
    border-left: none;
    border-bottom: none;
    margin-bottom: 20px;
    gap: 0;
    width: fit-content;
}
.lang-switcher--mobile .lang-switcher__link {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    padding: 10px 24px;
    border-radius: 0;
}
.lang-switcher--mobile .lang-switcher__link.active { color: var(--accent-fg); background: var(--accent); }
.nav__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav__menu-btn svg { width: 24px; height: 24px; color: #fff; }
.nav.scrolled .nav__menu-btn svg { color: var(--fg); }

/* Mobile nav */
.nav__mobile {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    z-index: 9999;
    padding: 80px 32px 32px;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}
body.nav-open { overflow: hidden; }
.nav__mobile.open { display: flex; }
.nav__mobile-close {
    position: fixed;
    top: 20px; right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}
.nav__mobile-close svg { width: 28px; height: 28px; color: #fff; }

/* Lang switcher inside mobile nav — sits at top, clearly visible */
.nav__mobile .lang-switcher {
    margin-left: 0;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    width: fit-content;
}
.nav__mobile .lang-switcher__link {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    padding: 10px 28px;
    text-decoration: none;
}
.nav__mobile .lang-switcher__link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav__mobile .lang-switcher__link.active { color: var(--accent-fg); background: var(--accent); }

/* Mobile nav links */
.nav__mobile-link {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 2rem);
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
    text-decoration: none;
}
.nav__mobile-link:hover { color: var(--accent); }

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 32px;
}
.hero__subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 80px;
    margin-bottom: 16px;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero__body {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.75;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
    position: absolute;
    bottom: 32px; right: 40px;
    z-index: 2;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    writing-mode: vertical-rl;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--primary); color: var(--primary-fg); }
.btn--primary:hover { background: #16403a; color: var(--primary-fg); }
.btn--accent { background: var(--accent); color: var(--accent-fg); }
.btn--accent:hover { background: #b5863e; color: #fff; }
.btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn--ghost { background: transparent; color: var(--primary); padding: 8px 16px; }
.btn--ghost:hover { background: var(--secondary); }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ---- Program / About Section ---- */
.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.program-text p {
    font-size: 1.15rem;
    color: var(--muted-fg);
    margin-bottom: 20px;
    line-height: 1.8;
}
.program-image { position: relative; }
.program-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.program-image__caption {
    position: absolute;
    bottom: -12px; right: 24px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-fg);
    background: var(--bg);
    padding: 6px 12px;
}

/* ============================================================
   SECTORS SECTION — critical color overrides
   ============================================================ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.sector-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--card) !important;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.sector-card__image {
    height: 280px;
    overflow: hidden;
}
.sector-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sector-card:hover .sector-card__image img { transform: scale(1.05); }
.sector-card__body {
    padding: 28px;
    color: #1A1A1A !important;
}
.sector-card__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1A1A1A !important;
}
.sector-card__desc {
    font-size: 1.05rem !important;
    color: #556B63 !important;
    margin-bottom: 12px;
    line-height: 1.7;
}
.sector-card__desc p {
    margin-bottom: 10px;
}
.sector-card__coords {
    font-size: 0.75rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C4944A !important;
    display: block;
    margin-top: 4px;
}

/* Also override section--primary's h3 rule specifically for sector cards */
.section--primary .sector-card .sector-card__name,
.section--primary .sector-card .sector-card__body,
.section--primary .sector-card .sector-card__desc,
.section--primary .sector-card .sector-card__coords {
    color: #1A1A1A;
}
.section--primary .sector-card .sector-card__name { color: #1A1A1A; }
.section--primary .sector-card .sector-card__desc { color: #556B63; }

.sector-card .hotel-card__link {
    display: inline-flex;
    margin-top: 14px;
}
.sector-card:hover .hotel-card__link {
    color: var(--accent);
    gap: 10px;
}

/* ---- Sector Detail Page ---- */
.sector-detail-hotels {
    padding-top: 0;
}
.sector-detail-hotels__empty {
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: var(--muted-fg);
    background: var(--card);
}
.section--primary .sector-card .sector-card__coords { color: #C4944A; }

/* ---- Destinations Section ---- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.dest-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.dest-card__image {
    position: absolute;
    inset: 0;
}
.dest-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.dest-card:hover .dest-card__image img { transform: scale(1.1); }
.dest-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(168 33% 18% / 0.5), transparent);
    transition: background 0.3s;
}
.dest-card:hover .dest-card__overlay {
    background: linear-gradient(to top, hsl(168 33% 18% / 0.85), hsl(168 33% 18% / 0.2), transparent);
}
.dest-card__content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px;
    z-index: 2;
}
.dest-card__tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.dest-card__name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 8px;
}
.dest-card__coords {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}
.dest-card__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s;
    opacity: 0;
}
.dest-card:hover .dest-card__details {
    max-height: 200px;
    opacity: 1;
}
.dest-card__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-top: 12px;
    line-height: 1.65;
}
.dest-card__desc p {
    margin-bottom: 8px;
}
.dest-card__housing {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 8px;
    font-weight: 600;
}
.dest-card__housing--na {
    color: var(--accent);
    font-weight: 500;
    font-style: italic;
}

/* ---- Journey Section ---- */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}
.journey-steps { display: flex; flex-direction: column; gap: 32px; }
.journey-step {
    display: flex;
    gap: 20px;
}
.journey-step__num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
    line-height: 1;
    min-width: 55px;
}
.journey-step__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--primary-fg);
}
.journey-step__desc {
    font-size: 1.05rem;
    color: rgba(248,240,225,0.75);
    line-height: 1.7;
}
.journey-checklist { margin-top: 16px; }
.journey-checklist__title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--primary-fg);
}
.journey-checklist ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.journey-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(248,240,225,0.75);
}
.journey-checklist li svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ---- Investment Section ---- */
.investment-group-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 48px;
}
.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.plan-card__name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.plan-card__duration {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin-bottom: 24px;
}
.plan-card__price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.plan-card__price-label {
    font-size: 0.9rem;
    color: var(--muted-fg);
    margin-bottom: 24px;
}
.plan-card__fees {
    text-align: left;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.plan-card__fee-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--muted);
}
.plan-card__fee-row:last-child { border-bottom: none; }
.plan-card__fee-label { color: var(--muted-fg); }
.plan-card__fee-value { font-weight: 600; }

.costs-section { margin-top: 48px; }
.admin-fee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.admin-fee-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 36px;
    text-align: center;
}
.admin-fee-card__name {
    font-size: 0.9rem;
    color: var(--muted-fg);
    display: block;
    margin-bottom: 8px;
}
.admin-fee-card__value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}
.costs-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.costs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.costs-table th,
.costs-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--muted);
}
.costs-table th {
    background: var(--muted);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.costs-table td:last-child,
.costs-table th:last-child { text-align: right; }

/* ---- Qualifications Section ---- */
.qualifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}
.qual-block { margin-bottom: 32px; }
.qual-block__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary);
}
.qual-block p {
    font-size: 1.05rem;
    color: var(--muted-fg);
    line-height: 1.75;
}

/* ---- Partners Section ---- */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}
.partners-text p {
    font-size: 1.15rem;
    color: var(--muted-fg);
    margin-bottom: 20px;
    line-height: 1.8;
}
.partners-text ol {
    list-style: none;
    counter-reset: partner-counter;
    margin-bottom: 20px;
}
.partners-text li {
    counter-increment: partner-counter;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--muted-fg);
    border-bottom: 1px solid var(--muted);
}
.partners-text li::before {
    content: counter(partner-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--accent);
}
.partners-list { margin-bottom: 32px; }
.partners-list__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}
.partners-list ol {
    list-style: none;
    counter-reset: partner-counter;
}
.partners-list li {
    counter-increment: partner-counter;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--muted-fg);
    border-bottom: 1px solid var(--muted);
}
.partners-list li::before {
    content: counter(partner-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--accent);
}
.partners-image { position: relative; }
.partners-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ---- Contact / Apply Section ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 48px;
}
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--fg);
    background: var(--bg);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,74,62,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: auto; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.contact-info-card svg {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-card__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin-bottom: 4px;
}
.contact-info-card__value {
    font-size: 1rem;
    color: var(--fg);
}
.contact-info-card__value a { color: var(--primary); }

/* ---- Footer CTA ---- */
.footer-cta {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
}
.footer-cta__label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.footer-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--primary-fg);
    margin-bottom: 32px;
}

/* ---- Footer ---- */
.footer {
    background: #0f3027;
    padding: 64px 0 32px;
    color: rgba(248,240,225,0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-name {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}
.footer__brand-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
}
.footer__heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    font-size: 0.95rem;
    color: rgba(248,240,225,0.6);
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(248,240,225,0.7);
    line-height: 1.5;
}
.footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}
.footer__contact-item a {
    font-size: 0.95rem;
    color: rgba(248,240,225,0.6);
    transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--accent); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.85rem;
    color: rgba(248,240,225,0.4);
}

/* ---- Floating Apply Button ---- */
.floating-apply {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}
.floating-apply.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ---- Alert/Message ---- */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.alert--success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.alert--error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .nav__menu-btn { display: block; }
    .program-grid,
    .journey-grid,
    .qualifications-grid,
    .partners-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    html { font-size: 16px; }
    .section { padding: 64px 0; }
    .sectors-grid,
    .destinations-grid,
    .investment-grid { grid-template-columns: 1fr; }
    .journey-checklist ul { grid-template-columns: 1fr; }
    .hero { min-height: 80vh; }
    .indochine-frame { border-radius: 60px 0; }
    .hero__title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .dest-card { height: 320px; }
    .nav__mobile { padding: 70px 20px 24px; }
    .nav__mobile .lang-switcher { margin-bottom: 16px; }
    .nav__mobile-link { font-size: clamp(1.25rem, 5vw, 1.75rem); padding: 12px 0; }
}

/* ============================================================
   DESTINATIONS UPGRADE — New Pages
   ============================================================ */

/* ---- Page Hero (sub-pages) ---- */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}
.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    max-width: 700px;
}
.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: -40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    flex-wrap: wrap;
}
.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0;
}
.breadcrumb__link {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb__link:hover { color: #fff; }
.breadcrumb__sep {
    display: flex;
    align-items: center;
    margin: 0 6px;
    color: rgba(255,255,255,0.4);
}
.breadcrumb__current {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

/* ---- Destinations Overview Grid ---- */
.destinations-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.dest-overview-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.dest-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.dest-overview-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.dest-overview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.dest-overview-card:hover .dest-overview-card__image img { transform: scale(1.08); }
.dest-overview-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
}
.dest-overview-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.dest-overview-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.dest-overview-card__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--fg);
    margin-bottom: 6px;
}
.dest-overview-card__coords {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-fg);
    margin-bottom: 12px;
}
.dest-overview-card__desc {
    font-size: 0.95rem;
    color: var(--muted-fg);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}
.dest-overview-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s, gap 0.2s;
}
.dest-overview-card:hover .dest-overview-card__link {
    color: var(--accent);
    gap: 10px;
}

/* ---- Destination Detail Hero ---- */
.dest-detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    overflow: hidden;
}
.dest-detail-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.dest-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
}
.dest-detail-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
}
.dest-detail-hero__tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.dest-detail-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.dest-detail-hero__subtitle {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.dest-detail-hero__coords {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.dest-detail-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    margin-top: 12px;
    background: rgba(76,175,80,0.25);
    border: 1px solid rgba(76,175,80,0.5);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #81c784;
}
.dest-detail-hero__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

/* ---- Destination Detail Content ---- */
.dest-detail-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}
.dest-detail-overview__text {
    font-size: 1.1rem;
    color: var(--muted-fg);
    line-height: 1.8;
}
.dest-detail-overview__text p { margin-bottom: 16px; }
/* Highlights */
.dest-detail-highlights__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--fg);
}
.dest-detail-highlights__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.dest-detail-highlights__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--fg);
    line-height: 1.5;
}
.dest-detail-highlights__item svg { flex-shrink: 0; margin-top: 3px; }

/* ---- Hotels Grid (on destination page) ---- */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.hotel-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.hotel-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.hotel-card:hover .hotel-card__image img { transform: scale(1.05); }
.hotel-card__stars {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 2px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
.hotel-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.hotel-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--fg);
}
.hotel-card__desc {
    font-size: 0.9rem;
    color: var(--muted-fg);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.hotel-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s, gap 0.2s;
}
.hotel-card:hover .hotel-card__link {
    color: var(--accent);
    gap: 10px;
}
.hotel-card__housing-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    margin-bottom: 10px;
    background: rgba(76,175,80,0.1);
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4caf50;
}

/* ---- Hotel Body Content ---- */
.hotel-tab-panel__body {
    font-size: 1.05rem;
    color: var(--muted-fg);
    line-height: 1.8;
    max-width: 100%;
}
.hotel-tab-panel__body p { margin-bottom: 16px; }
.hotel-tab-panel__body ul, .hotel-tab-panel__body ol {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}
.hotel-tab-panel__body li {
    margin-bottom: 8px;
}
.hotel-tab-panel__body h1,
.hotel-tab-panel__body h2,
.hotel-tab-panel__body h3,
.hotel-tab-panel__body h4 {
    font-family: var(--font-heading);
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--fg);
}
.hotel-tab-panel__body h2 + h2 { margin-top: 0; }
.hotel-tab-panel__body h2 img { margin: 0 0 4px; }
.hotel-tab-panel__body h2 br { display: none; }
.hotel-tab-panel__body h1 { font-size: 2.2rem; }
.hotel-tab-panel__body h2 { font-size: 1.8rem; }
.hotel-tab-panel__body h3 { font-size: 1.4rem; }
.hotel-tab-panel__body h4 { font-size: 1.15rem; }
.hotel-tab-panel__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    display: block;
}
.hotel-tab-panel__body [style*="text-align: center"] img,
.hotel-tab-panel__body [style*="text-align:center"] img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hotel-tab-panel__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.hotel-tab-panel__body th,
.hotel-tab-panel__body td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--muted);
}
.hotel-tab-panel__body th {
    background: var(--muted);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
}
.hotel-tab-panel__body tr:last-child td { border-bottom: none; }
.hotel-tab-panel__body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--muted-fg);
}
.hotel-tab-panel__body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}
/* ── Override Word-pasted inline font styles ── */
.hotel-tab-panel__body [style*="font-family"] {
    font-family: inherit !important;
}
.hotel-tab-panel__body h1[style*="font-family"],
.hotel-tab-panel__body h2[style*="font-family"],
.hotel-tab-panel__body h3[style*="font-family"],
.hotel-tab-panel__body h4[style*="font-family"],
.hotel-tab-panel__body h5[style*="font-family"],
.hotel-tab-panel__body h6[style*="font-family"] {
    font-family: var(--font-heading) !important;
}
/* ── Force heading sizes despite Word inline font-size ── */
.hotel-tab-panel__body h1 { font-size: 2.2rem !important; }
.hotel-tab-panel__body h2 { font-size: 1.8rem !important; }
.hotel-tab-panel__body h3 { font-size: 1.4rem !important; }
.hotel-tab-panel__body h4 { font-size: 1.15rem !important; }
/* ── Strip Word inline font-size from non-heading content ── */
.hotel-tab-panel__body :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6)[style*="font-size"] {
    font-size: inherit !important;
}

.hotel-tab-panel__empty {
    font-size: 1.05rem;
    color: var(--muted-fg);
    font-style: italic;
}

/* ---- Departments Grid ---- */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.dept-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dept-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.dept-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}
.dept-card__desc {
    font-size: 0.95rem;
    color: var(--muted-fg);
    line-height: 1.65;
}

/* ---- Gallery ---- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.gallery__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: none;
    padding: 0;
    background: none;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lightbox__close { top: 20px; right: 20px; font-size: 32px; line-height: 1; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox__img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 8px;
    object-fit: contain;
}
.lightbox__caption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

/* ---- Responsive for new pages ---- */
@media (max-width: 1024px) {
    .dest-detail-content { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .page-hero { min-height: 320px; }
    .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .destinations-overview-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .departments-grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .dest-detail-hero { min-height: 380px; }
    .dest-detail-hero__title { font-size: clamp(2rem, 8vw, 3.2rem); }
    .breadcrumb { margin-top: -30px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}
