/* ═══════════════════════════════════════════
   C&L SOLUTIONS — STYLESHEET
═══════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* --- COLORES OFICIALES DEL LOGO --- */
    --navy:      #002855;    /* El azul oscuro exacto de la 'C' y audífonos */
    --navy-mid:  #003a7a;    /* Variante azul un poco más clara para hovers */
    --teal:      #39821E;    /* El verde exacto del '&' y Staffing */
    --teal-lt:   #4ba329;    /* Variante verde brillante para pequeños acentos */
    --orange:    #F26F21;    /* El naranja vibrante exacto de la 'L' (Tu color de acción) */
    --orange-dk: #d65a15;    /* Variante naranja oscuro para hover en botones */
    
    /* --- COLORES DE SOPORTE (FONDO Y TEXTO) --- */
    --white:     #ffffff;
    --off-white: #FAFAFA;    /* Fondo claro limpio para que resalte el logo */
    --gray-lt:   #eef2f6;    /* Gris azulado muy suave para bordes limpios */
    --gray-mid:  #556B83;    /* Gris corporativo para textos descriptivos y secundarios */
    --gray-dk:   #253646;    /* Gris oscuro azulado para menús */
    --text:      #0B192C;    /* Color casi negro para máxima legibilidad del texto principal */
}

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text);
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── HEADER ──────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-lt);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,40,85,.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 2rem;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
}


.logo-area a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 0.75rem;       
}



.logo-img {
    width: 110px;
    height: auto;
    display: block;
    object-fit: contain;
}


.logo-text {
    margin-top: 0;    
    font-size: 1.50rem;
    font-weight: 700;
    color: var(--navy);
    text-align: left;  
    line-height: 1.2;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    text-decoration: none;
}

.logo-main {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.55rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--teal);
    letter-spacing: 0.5px;
}

/* Nav */
.nav-menu a {
    color: var(--gray-dk);
    font-size: 1.05rem;
    font-weight: 600;
    margin-left: 2rem;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.25s;
}
.nav-menu a:hover { color: var(--teal); }
.nav-menu a:hover::after { width: 100%; }

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ── LANGUAGE SWITCHER ───────────────────── */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    border: 1.5px solid var(--navy);
    border-radius: 20px;
    padding: 6px 12px 6px 9px;
    cursor: pointer;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
.lang-current:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
}
.lang-current:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}

.lang-flag {
    font-size: 15px;
    line-height: 1;
}

.lang-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.25s ease;
    opacity: 0.8;
}
.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-lt);
    box-shadow: 0 8px 30px rgba(0,40,85,.14), 0 2px 8px rgba(0,0,0,.06);
    min-width: 155px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 11px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: var(--gray-dk);
    text-align: left;
    transition: background 0.15s, color 0.15s;
}
.lang-option:hover {
    background: var(--off-white);
    color: var(--navy);
}
.lang-option.active {
    color: var(--navy);
    font-weight: 700;
}
.lang-option .lang-check {
    margin-left: auto;
    color: var(--teal);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.15s;
}
.lang-option.active .lang-check {
    opacity: 1;
}
.lang-option + .lang-option {
    border-top: 1px solid var(--gray-lt);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--navy);
}

/* ── BUTTONS ─────────────────────────────── */
.action-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.93rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.22s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
}
.action-btn.filled {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.action-btn.filled:hover {
    background: var(--orange-dk);
    border-color: var(--orange-dk);
    transform: translateY(-1px);
}
.action-btn.outlined {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.action-btn.outlined:hover {
    background: var(--white);
    color: var(--navy);
}

/* ── HERO SLIDER ─────────────────────────── */
.main-hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-slider { position: relative; width: 100%; min-height: 92vh; }

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.slide:nth-child(1) {
    background-image: linear-gradient(135deg, rgba(0, 40, 85, 0.95) 0%, rgba(0, 58, 122, 0.85) 100%), url('Slide_1.jpeg');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(2) {
    background-image: linear-gradient(135deg, rgba(57, 130, 30, 0.9) 0%, rgba(0, 40, 85, 0.92) 100%), url('Slide_2.jpeg');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(3) {
    background-image: linear-gradient(135deg, rgba(0, 40, 85, 0.92) 0%, rgba(57, 130, 30, 0.88) 100%), url('Slide_3.jpeg');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(4) {
    background-image: linear-gradient(135deg, rgba(242, 111, 33, 0.85) 0%, rgba(0, 40, 85, 0.93) 100%), url('Slide_4.jpeg');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(5) {
    background-image: linear-gradient(135deg, rgba(0, 58, 122, 0.93) 0%, rgba(57, 130, 30, 0.85) 100%), url('Slide_5.jpeg');
    background-size: cover;
    background-position: center;
}
.slide:nth-child(6) {
    background-image: linear-gradient(135deg, rgba(57, 130, 30, 0.88) 0%, rgba(0, 40, 85, 0.95) 100%), url('Slide_6.jpeg');
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.08);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-box { max-width: 620px; }

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal-lt);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.hero-box h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.hero-accent { color: var(--orange); }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.cta-flex { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slide controls */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}
.slide-arrow:hover { background: rgba(255,255,255,.25); }
.slide-arrow.prev { left: 1.5rem; }
.slide-arrow.next { right: 1.5rem; }

.slide-dots {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.dot.active {
    background: var(--orange);
    width: 22px;
    border-radius: 4px;
}

/* Hero entrance animation */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in .hero-eyebrow { animation: heroIn 0.6s ease 0.1s both; }
.animate-in h1             { animation: heroIn 0.6s ease 0.25s both; }
.animate-in .hero-desc     { animation: heroIn 0.6s ease 0.4s both; }
.animate-in .cta-flex      { animation: heroIn 0.6s ease 0.55s both; }

/* ── SECTIONS BASE ───────────────────────── */
.grid-section { padding: 5.5rem 2rem; }
.light-bg     { background: var(--off-white); }
.steps-bg     { background: var(--white); }

.center-heading {
    text-align: center;
    margin-bottom: 4rem;
}
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}
.center-heading h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.4rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
}
.accent-bar {
    width: 50px;
    height: 4px;
    background: var(--teal);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
.section-sub {
    max-width: 620px;
    margin: 1.2rem auto 0;
    color: var(--gray-mid);
    font-size: 1rem;
}

/* ── 3-COL CARDS ─────────────────────────── */
.row-3-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card-node {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,.02), 0 8px 24px rgba(0,0,0,.04);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0,0,0,.04), 0 16px 40px rgba(0,0,0,.08);
}
.card-icon {
    font-size: 2.4rem;
    color: var(--teal);
    margin-bottom: 1.4rem;
}
.card-node h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.card-node p { color: var(--gray-mid); font-size: 0.97rem; }

/* ── 4-COL PROGRAMS ──────────────────────── */
.row-4-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.program-item {
    background: var(--white);
    border-top: 4px solid var(--teal);
    padding: 2.5rem 1.8rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.program-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.prog-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(57,130,30,.1);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    width: fit-content;
}
.program-item h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.program-item p {
    color: var(--gray-mid);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    flex: 1;
}
.prog-list { margin-bottom: 1.5rem; }
.prog-list li {
    font-size: 0.88rem;
    color: var(--gray-dk);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}
.prog-list li i {
    color: var(--teal);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.prog-more {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}
.prog-more:hover { color: var(--navy); text-decoration: underline; }

/* ── STEPS ───────────────────────────────── */
.step-box { text-align: center; padding: 1rem; }
.badge-num {
    width: 58px;
    height: 58px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    font-family: 'DM Serif Display', serif;
}
.step-box h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.step-box p { color: var(--gray-mid); font-size: 0.93rem; }

/* ── HEALTHCARE BANNER ───────────────────── */
.healthcare-banner {
    position: relative;
    background-image: linear-gradient(135deg, rgba(0, 40, 85, 0.94) 0%, rgba(0, 58, 122, 0.9) 100%), url('Healthcare.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    color: var(--white);
}
.hb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.1);
}
.hb-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hb-content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.hb-content p {
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 2rem;
}
.hb-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}
.hb-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.97rem;
    opacity: 0.9;
}
.hb-list li i { color: var(--teal-lt); font-size: 1rem; }

/* ── CAREER SECTION ──────────────────────── */
.career-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}
.career-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.career-content {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.career-content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}
.career-list { margin-bottom: 2.5rem; }
.career-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
}
.career-list li i { color: var(--orange); }

/* ── FAQ ─────────────────────────────────── */
.faq-holder {
    max-width: 800px;
    margin: 0 auto;
}
.faq-block {
    background: var(--white);
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-lt);
    transition: box-shadow 0.2s;
}
.faq-block.open {
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.8rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    gap: 1rem;
}
.faq-toggle i {
    color: var(--orange);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.faq-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.8rem;
}
.faq-pane p {
    padding-bottom: 1.4rem;
    color: var(--gray-mid);
    font-size: 0.97rem;
    line-height: 1.7;
}
.faq-block.open .faq-pane { max-height: 260px; }
.faq-block.open .faq-toggle i { transform: rotate(180deg); }

/* ── MODALS ──────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,40,85,.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }

.modal-box {
    background: var(--white);
    border-radius: 12px;
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    animation: modalIn 0.3s ease both;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-box h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 2rem;
    padding-right: 2rem;
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--gray-mid);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover {
    background: var(--off-white);
    color: var(--navy);
}
.modal-modules { margin-bottom: 2rem; }
.mod-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gray-lt);
}
.mod-item:last-child { border-bottom: none; }
.mod-num {
    min-width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.mod-item strong {
    display: block;
    font-size: 0.97rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.mod-item p {
    font-size: 0.9 dream;
    color: var(--gray-mid);
    line-height: 1.6;
    margin: 0;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 5rem 2rem 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-brand .footer-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub  { color: var(--teal-lt); }
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}
.footer-links ul li, .footer-contact ul li {
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255,255,255,.7);
    transition: color 0.2s;
}
.footer-links ul li a:hover,
.footer-contact ul li a:hover { color: var(--teal-lt); }
.footer-contact ul li i {
    color: var(--teal-lt);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--gray-lt);
        padding: 1.2rem 0;
        box-shadow: 0 8px 24px rgba(0,40,85,.08);
    }
    .nav-menu.show { display: flex; }
    .nav-menu a {
        margin: 0;
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    .nav-menu a::after { display: none; }
    .mobile-toggle { display: block; }

    /* Language switcher on mobile: show only flag */
    .lang-label { display: none; }
    .lang-current { padding: 7px 10px; gap: 4px; }

    /* Hero */
    .hero-box h1 { font-size: 2.6rem; }
    .hero-container { padding: 5rem 1.5rem; }
    .cta-flex { flex-direction: column; }
    .action-btn { text-align: center; }

    /* Career */
    .career-section { grid-template-columns: 1fr; }
    .career-img { display: none; }
    .career-content { padding: 3.5rem 2rem; }
    .career-content h2 { font-size: 1.6rem; }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Modal */
    .modal-box { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-box h1 { font-size: 2rem; }
    .center-heading h2 { font-size: 1.9rem; }
}