﻿*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #1f6f8b;
    --gold-hover: #174f63;
    --dark: #0f1720;
    --dark2: #0b1118;
    --white: #ffffff;
    --text-light: rgba(255,255,255,0.85);
    --text-muted: #9aa6b2;
    --border: rgba(255,255,255,0.10);
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--white);
}

/* ─── HEADER ─── */
#header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    padding: 0;
}

    #header-wrap.transparent {
        background: white;
    }

    #header-wrap.scrolled {
        background: rgba(11, 17, 24, 0.96);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(10px);
    }

#header-main {
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s;
    gap: 20px;
}

#header-wrap.scrolled #header-main {
    height: 65px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

    .primary-menu a {
        font-family: 'Poppins', sans-serif;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: black;
        text-decoration: none;
        transition: color 0.3s;
        cursor: pointer;
    }

        .primary-menu a:hover {
            color: var(--gold);
        }

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 14px;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    user-select: none;
}

    .lang-btn:hover,
    .lang-switcher.open .lang-btn {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(213,170,109,0.08);
    }

.lang-arrow {
    transition: transform 0.25s;
    opacity: 0.7;
    flex-shrink: 0;
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 170px;
    background: #0f0c0b;
    border: 1px solid rgba(213,170,109,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scaleY(0.95);
    transform-origin: top right;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleY(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.77rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
}

    .lang-option:last-child {
        border-bottom: none;
    }

    .lang-option::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--gold);
        transform: scaleY(0);
        transition: transform 0.2s;
    }

    .lang-option:hover {
        background: rgba(31,111,139,0.06);
        color: var(--white);
    }

        .lang-option:hover::before, .lang-option.active::before {
            transform: scaleY(1);
        }

    .lang-option.active {
        color: var(--gold);
        background: rgba(213,170,109,0.05);
    }

.opt-check {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0;
}

.lang-option.active .opt-check {
    opacity: 1;
}

.btn-vhlex {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid var(--gold);
    background: transparent;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .btn-vhlex::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gold);
        transform: translateX(-101%);
        transition: transform 0.25s;
        z-index: 0;
    }

    .btn-vhlex span {
        position: relative;
        z-index: 1;
    }

    .btn-vhlex:hover {
        color: var(--dark);
    }

        .btn-vhlex:hover::before {
            transform: translateX(0);
        }

.btn-consult {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 22px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--gold);
    color: var(--dark);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

    .btn-consult:hover {
        background: var(--gold-hover);
        color: var(--white);
    }

/* ─── PAGE HERO ─── */
.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    animation: kenBurns 14s ease-out forwards;
}

    .page-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,20,30,0.84) 0%, rgba(10,20,30,0.58) 60%, rgba(10,20,30,0.18) 100%);
}

@keyframes kenBurns {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.00);
    }
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 860px;
    padding-top: 80px;
}

.page-hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    opacity: 0;
    animation: layerUp 0.7s 0.4s ease forwards;
}

    .page-hero-eyebrow::before {
        content: '';
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
    }

.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: layerUp 0.8s 0.7s ease forwards;
}

    .page-hero-title cite {
        font-style: italic;
        font-family: 'Playfair Display', serif;
        color: var(--gold);
        font-weight: 400;
    }

.page-hero-sub {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    opacity: 0;
    animation: layerUp 0.7s 1s ease forwards;
}

@keyframes layerUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
    background: rgba(31,111,139,0.06);
    border-bottom: 1px solid rgba(31,111,139,0.12);
    padding: 14px 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    max-width: 1200px;
    margin: 0 auto;
}

    .breadcrumb a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
        cursor: pointer;
    }

        .breadcrumb a:hover {
            color: var(--gold);
        }

    .breadcrumb .sep {
        color: var(--gold);
        font-size: 0.8rem;
    }

    .breadcrumb .current {
        color: var(--gold);
    }

/* ─── INTRO SECTION ─── */
.lit-intro {
    padding: 90px 60px 80px;
    background: var(--dark);
    position: relative;
}

    .lit-intro::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 60px;
        right: 60px;
        height: 1px;
        background: var(--border);
    }

    .lit-intro .inner {
        max-width: 1200px;
        margin: 0 auto;
    }

.lit-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.lit-intro-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lit-intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 28px;
}

    .lit-intro-heading cite {
        font-style: italic;
        color: var(--gold);
    }

.h-gap {
    display: flex;
    gap: 5px;
    margin-bottom: 32px;
}

    .h-gap i {
        display: block;
        height: 3px;
        border-radius: 2px;
        background: var(--gold);
    }

        .h-gap i:nth-child(1) {
            width: 28px;
        }

        .h-gap i:nth-child(2) {
            width: 8px;
        }

        .h-gap i:nth-child(3) {
            width: 5px;
        }

        .h-gap i:nth-child(4) {
            width: 3px;
        }

.lit-intro-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}

.lit-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 10px;
}

.lit-stat {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
}

    .lit-stat:nth-child(3),
    .lit-stat:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .lit-stat:last-child,
    .lit-stat:nth-child(2) {
        border-right: none;
    }

.lit-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 6px;
}

.lit-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}

/* ─── TRACK RECORD BAR ─── */
.track-record-bar {
    background: linear-gradient(135deg, rgba(31,111,139,0.10) 0%, rgba(23,79,99,0.06) 100%);
    border-top: 1px solid rgba(31,111,139,0.18);
    border-bottom: 1px solid rgba(31,111,139,0.18);
    padding: 48px 60px;
}

    .track-record-bar .inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

.track-record-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.track-record-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

    .track-record-content h3 cite {
        font-style: italic;
        color: var(--gold);
    }

.track-record-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 820px;
}

/* ─── SERVICES GRID ─── */
.lit-services {
    padding: 90px 60px 100px;
    background-image: url('img/foto10.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

    .lit-services::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.87);
    }

    .lit-services .inner {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .section-heading .sub {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 14px;
    }

        .section-heading .sub::before,
        .section-heading .sub::after {
            content: '';
            display: block;
            width: 30px;
            height: 1px;
            background: var(--gold);
        }

    .section-heading h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
    }

        .section-heading h2 cite {
            font-style: italic;
            color: var(--gold);
        }

    .section-heading .h-gap {
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 0;
    }

.lit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(61,59,59,0.4);
}

.lit-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

    .lit-card:hover {
        border-color: var(--gold);
    }

    .lit-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gold);
        transition: width 0.4s ease;
    }

    .lit-card:hover::after {
        width: 100%;
    }

.lit-card-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.5s ease;
    z-index: 0;
}

    .lit-card-hover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .lit-card-hover::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.74);
    }

.lit-card:hover .lit-card-hover {
    opacity: 1;
}

.lit-card-body {
    position: relative;
    z-index: 1;
}

.lit-card-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.45;
}

.lit-card p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.lit-card-cta {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.lit-card:hover .lit-card-cta {
    opacity: 1;
}

/* ─── QUALIFICATIONS ─── */
.lit-qualifications {
    padding: 90px 60px;
    background: #f4f8fb;
    position: relative;
}

    .lit-qualifications::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(31,111,139,0.03);
    }

    .lit-qualifications .inner {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
    }

.qual-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 70px;
    align-items: start;
}

.qual-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.qual-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

    .qual-heading cite {
        font-style: italic;
        color: var(--gold-hover);
    }

.qual-hgap {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
}

    .qual-hgap i {
        display: block;
        height: 3px;
        border-radius: 2px;
        background: var(--gold);
    }

        .qual-hgap i:nth-child(1) {
            width: 28px;
        }

        .qual-hgap i:nth-child(2) {
            width: 8px;
        }

        .qual-hgap i:nth-child(3) {
            width: 5px;
        }

        .qual-hgap i:nth-child(4) {
            width: 3px;
        }

.qual-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.87rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.qual-list {
    list-style: none;
    margin-top: 8px;
}

    .qual-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        font-size: 0.84rem;
        color: #444;
        line-height: 1.6;
    }

        .qual-list li:last-child {
            border-bottom: none;
        }

        .qual-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            margin-top: 7px;
        }

.qual-sidebar {
    padding-top: 8px;
}

.qual-card {
    background: var(--dark);
    padding: 32px 28px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    position: relative;
}

    .qual-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
    }

.qual-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.qual-card-text {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ─── CTA BANNER ─── */
.lit-cta {
    padding: 90px 60px;
    background-image: url('img/foto12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

    .lit-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.82);
    }

    .lit-cta .inner {
        position: relative;
        z-index: 1;
        max-width: 700px;
        margin: 0 auto;
    }

.lit-cta-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lit-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

    .lit-cta h2 cite {
        font-style: italic;
        color: var(--gold);
    }

.lit-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 38px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    cursor: pointer;
}

    .btn:hover {
        background: transparent;
        color: var(--gold);
    }

/* ─── FOOTER ─── */
footer {
    background: #0b1118;
    border-top: 1px solid rgba(31,111,139,0.16);
}

.footer-top {
    padding: 70px 60px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.footer-logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 18px;
    cursor: pointer;
}

    .footer-logo-link span {
        color: var(--gold);
    }

.footer-desc {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-contact-list {
    list-style: none;
}

    .footer-contact-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 10px;
    }

        .footer-contact-list li span:first-child {
            color: var(--gold);
            font-size: 0.85rem;
            flex-shrink: 0;
        }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 0.82rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

        .footer-links a::before {
            content: '›';
            color: var(--gold);
            font-size: 1rem;
            line-height: 1;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copy {
    font-size: 0.78rem;
    color: #555;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.8rem;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

/* ─── SCROLL TOP ─── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}

    .scroll-top.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    #header-main {
        padding: 0 30px;
    }

    .primary-menu {
        gap: 20px;
    }

    .lit-intro-grid, .qual-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lit-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .track-record-bar .inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .primary-menu {
        display: none;
    }

    .btn-vhlex {
        display: none;
    }

    .page-hero-content, .breadcrumb-bar, .lit-intro,
    .track-record-bar, .lit-services, .lit-qualifications, .lit-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lit-grid {
        grid-template-columns: 1fr;
    }

    .lit-stat-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .breadcrumb-bar {
        padding: 12px 20px;
    }
}


/* =========================================
   CORPORATE THEME OVERRIDES
========================================= */
:root {
    --section-light: #f4f8fb;
    --section-light-2: #eaf1f5;
    --heading-dark: #14212b;
    --text-dark: #4c5b68;
    --border-light: #e5edf3;
}

/* buttons */
.btn-consult {
    color: var(--white);
}

    .btn-consult:hover {
        background: var(--gold-hover);
        color: var(--white);
    }

.btn-vhlex:hover {
    color: var(--white);
}

/* cleaner cards + sections */
.breadcrumb {
    color: #64707d;
}

    .breadcrumb a {
        color: #64707d;
    }

.lit-intro {
    background: var(--section-light);
}

    .lit-intro::after {
        background: #dbe6ee;
    }

.lit-intro-label,
.page-hero-eyebrow,
.qual-label,
.lit-cta-label,
.section-heading .sub,
.track-record-content h3 cite,
.page-hero-title cite,
.breadcrumb .sep,
.breadcrumb .current,
.qual-heading cite,
.footer-logo-link span,
.footer-links a::before,
.footer-contact-list li span:first-child,
.lang-option.active,
.opt-check {
    color: var(--gold);
}

    .page-hero-eyebrow::before,
    .section-heading .sub::before,
    .section-heading .sub::after,
    .h-gap i,
    .qual-hgap i {
        background: var(--gold);
    }

.lit-intro-heading {
    color: var(--heading-dark);
}

.lit-intro-text {
    color: var(--text-dark);
}

.lit-stat-row {
    border-color: var(--border-light);
    background: #fff;
}

.lit-stat {
    border-color: var(--border-light);
}

.lit-stat-num {
    color: var(--gold);
}

.lit-stat-label {
    color: #738190;
}

.track-record-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: #fff;
}

.track-record-content p {
    color: rgba(255,255,255,0.78);
}

/* services */
.lit-services {
    background-image: none;
    background-color: var(--section-light);
}

    .lit-services::before {
        display: none;
    }

.section-heading h2 {
    color: var(--heading-dark);
}

    .section-heading h2 cite {
        color: var(--gold);
    }

.lit-grid {
    gap: 24px;
    background: transparent;
}

.lit-card {
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 25px rgba(15,23,32,0.06);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

    .lit-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(15,23,32,0.10);
    }

    .lit-card h3 {
        color: var(--heading-dark);
    }

    .lit-card p {
        color: var(--text-dark);
    }

.lit-card-hover::after {
    background: rgba(15,23,32,0.78);
}

.lit-card:hover h3,
.lit-card:hover p,
.lit-card:hover .lit-card-cta {
    color: #fff;
}

/* qualifications */
.qual-heading {
    color: var(--heading-dark);
}

.qual-text {
    color: var(--text-dark);
}

.qual-list li {
    color: var(--text-dark);
    border-bottom-color: rgba(20,33,43,0.08);
}

.qual-card {
    background: #fff;
    border: 1px solid var(--border-light);
}

.qual-card-text {
    color: var(--text-dark);
}

/* cta/footer */
.lit-cta::before {
    background: rgba(11,17,24,0.78);
}

.btn {
    color: #fff;
}

    .btn:hover {
        color: var(--gold);
    }

.footer-copy {
    color: #6b7783;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.scroll-top {
    color: #fff;
}
