/* ===== HEADER ===== */
.llsite-header {
    background: #10222C;
    border-bottom: 1px solid #2E4A5A;
    position: sticky;
    top: 0;
    z-index: 999;
}
.llsite-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.llsite-logo-link { display: block; }
.llsite-logo {
    height: 60px;
    width: auto;
    display: block;
}

.llsite-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.llsite-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.llsite-hamburger-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.llsite-hamburger-open span:nth-child(2) { opacity: 0; }
.llsite-hamburger-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.llsite-nav-list {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.llsite-nav-list li { position: relative; }
.llsite-nav-list a {
    color: #C9D9DE;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    display: block;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.llsite-nav-list a:hover,
.llsite-nav-list .current-menu-item > a {
    color: #4FB3A0;
}

/* Dropdown */
.llsite-nav-list .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1B3A4B;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: none;
    margin: 0;
}
.llsite-nav-list .menu-item-has-children:hover .sub-menu {
    display: block;
}
.llsite-nav-list .sub-menu a {
    padding: 10px 18px;
    font-size: 13px;
}

@media (max-width: 900px) {
    .llsite-hamburger { display: flex; }
    .llsite-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #10222C;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    .llsite-nav.llsite-nav-open { right: 0; }
    .llsite-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .llsite-nav-list li { width: 100%; }
    .llsite-nav-list a { padding: 14px 0; border-bottom: 1px solid #2E4A5A; }
    .llsite-nav-list .sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #142A38;
        padding-left: 12px;
    }
    .llsite-submenu-open .sub-menu { display: block; }
}

/* ===== FOOTER ===== */
.llsite-footer {
    background: #0C1B23;
    padding: 60px 20px 30px;
}
.llsite-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.llsite-footer-top { margin-bottom: 30px; }
.llsite-footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 14px;
}
.llsite-footer-tagline {
    color: #4FB3A0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.llsite-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 30px;
}
.llsite-footer-nav a {
    color: #A9C2CE;
    text-decoration: none;
    font-size: 13px;
}
.llsite-footer-nav a:hover { color: #4FB3A0; }

.llsite-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}
.llsite-footer-social a { color: #C9D9DE; }
.llsite-footer-social a:hover { color: #4FB3A0; }

.llsite-footer-legal {
    border-top: 1px solid #2E4A5A;
    padding-top: 24px;
}
.llsite-footer-legal p {
    color: #8FA89C;
    font-size: 12px;
    margin-bottom: 10px;
}
.llsite-footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
}
.llsite-footer-legal-links a { color: #8FA89C; text-decoration: underline; }
.llsite-footer-legal-links a:hover { color: #4FB3A0; }
.llsite-footer-legal-links span { color: #556B6B; }