/* ==========================================================================
   HEADER — sticky glassmorphism bar
   ========================================================================== */

.lbg-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.lbg-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lbg-header-logo img {
    display: block;
    max-height: 44px;
    width: auto;
}

.lbg-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lbg-header-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.lbg-header-nav a {
    text-decoration: none;
    color: #3f3f3f;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.lbg-header-nav a:hover {
    color: var(--lbg-primary);
}

.lbg-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lbg-header-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    background: var(--lbg-primary);
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.lbg-header-cta:hover {
    background: var(--lbg-primary-hover);
}

.lbg-header-burger {
    display: none;
    width: 33px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lbg-header-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lbg-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.lbg-header-burger span:nth-child(1) { top: 0; }
.lbg-header-burger span:nth-child(2) { top: 10px; }
.lbg-header-burger span:nth-child(3) { top: 20px; }

.lbg-mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: #fff;
    padding: 28px 22px;
    overflow-y: auto;
}

.lbg-mobile-drawer.open {
    display: block;
}

.lbg-mobile-drawer-close {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 32px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lbg-dark-accent);
}

.lbg-mobile-drawer ul {
    list-style: none;
    padding: 60px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lbg-mobile-drawer a {
    display: block;
    padding: 14px 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--lbg-dark-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--lbg-border);
}

.lbg-mobile-drawer .lbg-header-cta {
    display: block;
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .lbg-header-nav { display: none; }
    .lbg-header-actions .lbg-header-cta { display: none; }
    .lbg-header-burger { display: block; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.lbg-footer {
    background: linear-gradient(180deg, #0b1220, #070b14);
    color: #ffffff;
    padding: 70px 20px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.lbg-footer::before,
.lbg-footer::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.38;
    z-index: 0;
    pointer-events: none;
}

.lbg-footer::before {
    background: var(--lbg-primary);
    top: -170px;
    left: -170px;
}

.lbg-footer::after {
    background: var(--lbg-primary-2);
    bottom: -170px;
    right: -170px;
}

.lbg-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.lbg-footer-col h4 {
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    position: relative;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.lbg-footer-col h4::after {
    content: "";
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--lbg-primary), var(--lbg-primary-2));
    position: absolute;
    left: 0;
    bottom: -7px;
    border-radius: 10px;
}

.lbg-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lbg-footer-col ul li {
    margin-bottom: 10px;
}

.lbg-footer-col ul li ul.lbg-sub-list {
    margin-top: 8px;
    margin-left: 15px;
}

.lbg-footer-col ul li ul.lbg-sub-list li {
    margin-bottom: 6px;
}

.lbg-footer-col ul li a {
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.lbg-footer-col ul li a:hover {
    color: var(--lbg-primary-2) !important;
    padding-left: 6px;
}

.lbg-footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.lbg-footer-logo {
    max-width: 250px;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

.lbg-footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.lbg-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 330px;
    font-weight: 400;
}

.lbg-footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
}

.lbg-footer-socials {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.lbg-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: 0.3s;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
}

.lbg-footer-socials a:hover {
    background: var(--lbg-primary);
    color: #fff !important;
    border-color: var(--lbg-primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(var(--lbg-primary-rgb), 0.35);
}

.lbg-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 45px;
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65) !important;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .lbg-footer-logo { max-width: 200px; }
}

@media (max-width: 500px) {
    .lbg-footer { text-align: center; }
    .lbg-footer-brand-box { align-items: center; }
    .lbg-footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .lbg-footer-col ul li ul.lbg-sub-list { margin-left: 0; }
    .lbg-footer-socials { justify-content: center; }
    .lbg-footer-desc { margin-left: auto; margin-right: auto; }
    .lbg-footer-logo { max-width: 160px; }
}
