﻿/* ══════════════════════════════════════
   LaNetHub - CLEAN LIGHT DESIGN
══════════════════════════════════════ */

:root {
    /* Two-tone palette: deep logo blue + the earlier #1976d2 accent */
    --brand-primary: #1976d2;
    --brand-accent: #1976d2;
    --brand-accent-strong: #1565c0;
    --brand-neutral: #f5f9fc;
    --brand-neutral-strong: #ffffff;

    --primary: var(--brand-primary);
    --primary-dark: #001c2e;
    --primary-light: var(--brand-accent-strong);
    --secondary: var(--brand-accent);

    --bg-dark: var(--brand-primary);
    --bg-navy: #143a56;
    --bg-light: var(--brand-neutral);
    --bg-white: var(--brand-neutral-strong);
    --bg-card: var(--brand-neutral-strong);

    --text-white: #ffffff;
    --text-dark: var(--brand-primary);
    --text-gray: #596872;
    --text-muted: #7a8793;
    --text-light: #90a4ae;

    --border-light: #dfeef8;
    --border-gray: #d5e7f2;
    --shadow: 0 4px 20px rgba(1, 46, 74, 0.06);
    --shadow-hover: 0 8px 30px rgba(1, 46, 74, 0.10);
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--primary-light);
}

.theme-btn,
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"] {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-white) !important;
}

.theme-btn:hover,
.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

.section-title h2,
.section-title h3,
.page-title h2 {
    color: var(--primary);
}

/* Remove any decorative background shape behind the navbar logo */
.header-main::before,
.sticky-header .header-main::before {
    content: none !important;
    display: none !important;
    background: transparent !important;
}

/* ══════════════════════════════════════
   HEADER - CLEAN WHITE DESIGN
══════════════════════════════════════ */

.header-top-1 {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-list {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .contact-list li {
        color: var(--text-gray);
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
    }

    .contact-list i {
        color: var(--primary);
        font-size: 16px;
    }

.header-top-1 .list {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-top-1 .list a,
    .header-top-1 .list button {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        background: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 14px;
    }

        .header-top-1 .list a:hover,
        .header-top-1 .list button:hover {
            color: var(--primary);
        }

/* Sticky Header - White Background */
.header-1.sticky-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-light);
}

/* Logo */
.logo {
    margin-right: 40px;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
}

.lnh-logo-img {
    height: 50px;
    width: auto;
    display: block;
    background: transparent !important;
    object-fit: contain;
    transition: transform 0.3s;
}

.header-logo:hover .lnh-logo-img {
    transform: scale(1.05);
}

/* Navigation Menu - Dark Text */
.main-menu ul {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .main-menu ul li a {
        color: var(--text-dark) !important;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        padding: 25px 18px;
        display: block;
        transition: all 0.3s;
        position: relative;
    }

        .main-menu ul li a:hover,
        .main-menu ul li a.active-menu {
            color: var(--primary) !important;
        }

        .main-menu ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s;
            border-radius: 3px 3px 0 0;
        }

        .main-menu ul li a:hover::after,
        .main-menu ul li a.active-menu::after {
            width: 70%;
        }

    /* Dropdown Menu */
    .main-menu ul li {
        position: relative;
    }

        .main-menu ul li ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-white);
            min-width: 250px;
            padding: 15px 0;
            border-radius: 8px;
            box-shadow: var(--shadow-hover);
            border: 1px solid var(--border-light);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            flex-direction: column;
        }

        .main-menu ul li ul li {
            display: block;
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .main-menu ul li:hover ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .main-menu ul li ul li a {
            color: var(--text-dark) !important;
            padding: 10px 25px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

            .main-menu ul li ul li a:hover {
                background: var(--bg-light);
                color: var(--primary) !important;
                padding-left: 30px;
            }

            .main-menu ul li ul li a i {
                color: var(--primary);
                font-size: 16px;
            }

.submenu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 10px 25px;
}

.submenu-head {
    padding: 8px 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Header Search */
.lnh-header-search {
    margin-right: 25px;
}

.lnh-search-inner {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 8px 15px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

    .lnh-search-inner:focus-within {
        background: var(--bg-white);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    }

    .lnh-search-inner input {
        background: none;
        border: none;
        color: var(--text-dark);
        width: 250px;
        padding: 5px 10px;
        outline: none;
        font-size: 14px;
    }

        .lnh-search-inner input::placeholder {
            color: var(--text-muted);
        }

    .lnh-search-inner button {
        background: none;
        border: none;
        color: var(--primary);
        cursor: pointer;
        padding: 5px;
        font-size: 16px;
        transition: all 0.3s;
    }

        .lnh-search-inner button:hover {
            color: var(--primary-dark);
            transform: scale(1.1);
        }

/* Header Buttons - MOBILE FRIENDLY */
.menu-cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lnh-btn-login {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .lnh-btn-login:hover {
        color: var(--primary);
    }

.lnh-btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white) !important;
    padding: 12px 24px !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}

    .lnh-btn-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
    }

/* ══════════════════════════════════════
   HERO SECTION - LIGHT BLUE GRADIENT
══════════════════════════════════════ */

.lnh-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #e1f5fe 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

    .lnh-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(25, 118, 210, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(38, 198, 218, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

.lnh-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(25, 118, 210, 0.1);
    border: 1px solid rgba(25, 118, 210, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

    .lnh-hero-eyebrow .dot {
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.lnh-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lnh-hero h1 .hero-word {
    display: inline-block;
    letter-spacing: -0.01em;
}

.lnh-hero h1 .hero-word-1 {
    color: var(--text-dark);
}

.lnh-hero h1 .hero-word-2 {
    color: var(--brand-accent);
}

.lnh-hero h1 .hero-word-3 {
    color: var(--primary);
}

.lnh-hero h1 .hero-word-4 {
    color: var(--brand-accent);
}

.lnh-hero h1 .hero-word-5 {
    color: var(--primary);
}

.lnh-hero h1 .hero-word-6 {
    color: var(--primary-light);
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 650px;
}

/* Hero Search Box */
.lnh-search-box {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 20px;
    max-width: 700px;
    box-shadow: var(--shadow);
}

    .lnh-search-box select {
        background: var(--bg-light);
        border: none;
        color: var(--text-dark);
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 8px;
        outline: none;
        cursor: pointer;
        font-weight: 500;
    }

        .lnh-search-box select option {
            background: var(--bg-white);
            color: var(--text-dark);
        }

.lnh-search-divider {
    width: 1px;
    height: 35px;
    background: var(--border-light);
    margin: 0 12px;
}

.lnh-search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 12px 18px;
    font-size: 14px;
    outline: none;
}

    .lnh-search-box input::placeholder {
        color: var(--text-muted);
    }

.lnh-search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .lnh-search-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
    }

/* Hero Tags */
.lnh-hero-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.lnh-tag-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.lnh-hero-tag {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    font-weight: 500;
}

    .lnh-hero-tag:hover {
        background: rgba(25, 118, 210, 0.1);
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

/* CTA Buttons */
.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

    .theme-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    }

    .theme-btn.transparent-btn {
        background: var(--bg-white);
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: none;
    }

        .theme-btn.transparent-btn:hover {
            background: rgba(25, 118, 210, 0.05);
            box-shadow: 0 6px 20px rgba(25, 118, 210, 0.2);
        }

/* ══════════════════════════════════════
   STATS CARD - WHITE WITH SHADOW
══════════════════════════════════════ */

.lnh-stats-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.stats-head {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.lnh-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.lnh-stat-lbl {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
}

.lnh-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-light);
}

.lnh-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.lnh-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

    .lnh-badge:hover {
        background: rgba(25, 118, 210, 0.08);
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

    .lnh-badge i {
        color: var(--primary);
        font-size: 16px;
    }

/* ══════════════════════════════════════
   AD STRIPS
══════════════════════════════════════ */

.lnh-ad-strip {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    padding: 15px 0;
    border-bottom: 1px solid #f0e6c8;
}

.lnh-ad-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border: 2px dashed #d4b948;
    padding: 12px 25px;
    border-radius: 6px;
    color: #9a7800;
    font-weight: 600;
    font-size: 13px;
}

.lnh-ad-tag {
    background: #d4b948;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   SECTIONS & CARDS
══════════════════════════════════════ */

.lnh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.lnh-section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.lnh-section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.lnh-btn-view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

    .lnh-btn-view-all:hover {
        color: var(--primary-dark);
        transform: translateX(5px);
    }

/* Resource Cards */
.lnh-resource-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

    .lnh-resource-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
    }

.lnh-resource-thumb {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lnh-thumb-icon {
    font-size: 3.5rem;
    opacity: 0.3;
}

.lnh-play-btn {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lnh-resource-card:hover .lnh-play-btn {
    transform: scale(1.1);
}

.lnh-res-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-white);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

    .lnh-res-badge.video {
        background: var(--bg-white);
        color: var(--primary);
    }

    .lnh-res-badge.note {
        background: #ef5350;
        color: white;
    }

.lnh-resource-body {
    padding: 20px;
}

.lnh-res-level {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.lnh-resource-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.lnh-res-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 12px;
}

    .lnh-res-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.lnh-btn-start {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    justify-content: center;
    font-size: 13px;
}

    .lnh-btn-start:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    }

/* ══════════════════════════════════════
   LEADERBOARD
══════════════════════════════════════ */

.lnh-leaderboard {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.lnh-lb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

    .lnh-lb-header h5 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

        .lnh-lb-header h5 i {
            color: #f1c40f;
        }

.lnh-lb-tabs {
    display: flex;
    gap: 6px;
}

.lnh-lb-tab {
    background: var(--bg-light);
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

    .lnh-lb-tab.active,
    .lnh-lb-tab:hover {
        background: var(--primary);
        color: var(--text-white);
    }

.lnh-lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s;
}

    .lnh-lb-row:hover {
        background: rgba(25, 118, 210, 0.05);
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
        border-radius: 6px;
    }

.lnh-lb-rank {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

    .lnh-lb-rank.gold {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        color: #b8860b;
    }

    .lnh-lb-rank.silver {
        background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
        color: #666;
    }

    .lnh-lb-rank.bronze {
        background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
        color: #8b4513;
    }

.lnh-lb-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 13px;
}

.lnh-lb-info {
    flex: 1;
}

.lnh-lb-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

.lnh-lb-school {
    font-size: 12px;
    color: var(--text-muted);
}

.lnh-lb-score {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.lnh-lb-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

    .lnh-lb-footer a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        font-size: 13px;
    }

        .lnh-lb-footer a:hover {
            color: var(--primary-dark);
        }

/* ══════════════════════════════════════
   LEARNING PATHS
══════════════════════════════════════ */

.lnh-path-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

    .lnh-path-card:hover {
        transform: translateY(-6px);
        border-color: var(--primary);
        box-shadow: var(--shadow-hover);
    }

.lnh-path-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.lnh-path-card h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.lnh-path-card p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.lnh-path-count {
    display: inline-block;
    background: rgba(25, 118, 210, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */

.lnh-stats-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0;
}

.counter-lbl {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */

.lnh-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

    .lnh-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .lnh-cta h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 12px;
    }

    .lnh-cta p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .lnh-cta .theme-btn.outline {
        background: transparent;
        color: var(--text-white);
        border: 2px solid var(--text-white);
        box-shadow: none;
    }

        .lnh-cta .theme-btn.outline:hover {
            background: var(--text-white);
            color: var(--primary);
        }

/* ══════════════════════════════════════
   SIDEBAR & ADS
══════════════════════════════════════ */

.lnh-sidebar-ad {
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border: 2px dashed #d4b948;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #9a7800;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 250px;
    font-size: 12px;
}

.lnh-sidebar-ad-300x600 {
    min-height: 600px;
}

.lnh-sidebar-promo {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    padding: 25px;
    color: var(--text-white);
    text-align: center;
}

.promo-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lnh-sidebar-promo h6 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lnh-sidebar-promo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 15px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

.footer-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.footer-widgets-wrapper {
    padding: 60px 0 30px;
}

.single-footer-widget h3 {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-footer-widget p {
    color: var(--text-light);
    line-height: 1.7;
}

.single-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .single-footer-widget ul li {
        margin-bottom: 10px;
    }

        .single-footer-widget ul li a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 14px;
        }

            .single-footer-widget ul li a:hover {
                color: var(--primary-light);
                padding-left: 5px;
            }

            .single-footer-widget ul li a i {
                color: var(--primary);
                font-size: 11px;
            }

.footer-input {
    display: flex;
    margin-top: 15px;
}

    .footer-input input {
        flex: 1;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--text-white);
        padding: 10px 12px;
        border-radius: 6px 0 0 6px;
        outline: none;
        font-size: 13px;
    }

        .footer-input input::placeholder {
            color: var(--text-muted);
        }

.newsletter-btn {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

    .newsletter-btn:hover {
        background: var(--primary-light);
    }

.lnh-footer-promo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.lnh-promo-tag {
    background: var(--primary);
    color: var(--text-white);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .footer-bottom p {
        color: var(--text-muted);
        margin: 0;
        font-size: 13px;
    }

.brand-logo {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.lnh-partner-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ══════════════════════════════════════
   MODALS
══════════════════════════════════════ */

.lnh-modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

.identityBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-wrapper {
    padding: 40px;
}

    .form-wrapper h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

.inputField {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

    .inputField:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    }

.banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 15px;
}

    .banner .login-btn,
    .banner .register-btn {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .banner .login-btn {
        background: rgba(255, 255, 255, 0.2);
        color: var(--text-white);
    }

    .banner .register-btn {
        background: var(--text-white);
        color: var(--primary);
    }

.loginBg img,
.signUpBg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* ══════════════════════════════════════
   RESPONSIVE - MOBILE OPTIMIZED
══════════════════════════════════════ */

@media (max-width: 991px) {
    .lnh-hero h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .lnh-search-box {
        flex-wrap: wrap;
    }

        .lnh-search-box select {
            width: 100%;
            margin-bottom: 8px;
        }

    .lnh-search-divider {
        display: none;
    }

    .lnh-search-box input {
        width: 100%;
    }

    .identityBox {
        grid-template-columns: 1fr;
    }

    .banner {
        display: none;
    }

    /* MOBILE MENU - Buttons on same row */
    .menu-cart {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .lnh-btn-login {
        padding: 8px 14px;
        font-size: 13px;
    }

    .lnh-btn-cta {
        padding: 8px 16px !important;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .lnh-hero {
        padding: 60px 0 40px;
    }

        .lnh-hero h1 {
            font-size: 1.8rem;
        }

    .hero-lead {
        font-size: 0.95rem;
    }

    .lnh-stats-card {
        padding: 20px;
    }

    .lnh-stat-num {
        font-size: 2rem;
    }

    .lnh-badge-grid {
        grid-template-columns: 1fr;
    }

    /* MOBILE - Ensure buttons stay on same row */
    .header-top-1 .list {
        gap: 12px;
    }

    .menu-cart {
        display: flex;
        flex-direction: row;
        gap: 6px;
    }

    .lnh-btn-login {
        padding: 6px 12px;
        font-size: 12px;
    }

        .lnh-btn-login i {
            display: none;
        }

    .lnh-btn-cta {
        padding: 6px 14px !important;
        font-size: 12px;
    }

        .lnh-btn-cta i {
            display: none;
        }
}

@media (max-width: 480px) {
    .lnh-hero h1 {
        font-size: 1.5rem;
    }

    .theme-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .menu-cart {
        gap: 4px;
    }

    .lnh-btn-login {
        padding: 6px 10px;
        font-size: 11px;
    }

    .lnh-btn-cta {
        padding: 6px 12px !important;
        font-size: 11px;
    }
}

/* ══════════════════════════════════════
   FIX: Hero search select on mobile
   Add these to the BOTTOM of lanetHub.css
══════════════════════════════════════ */

/* Override the flex-wrap that breaks the search on mobile */
@media (max-width: 991px) {

    /* Keep search box as a single horizontal row - no wrapping */
    .lnh-search-box {
        flex-wrap: nowrap !important;
        padding: 6px !important;
        gap: 0 !important;
        border-radius: 10px !important;
    }

    /* HIDE the select entirely on mobile - not needed */
    .lnh-search-box select {
        display: none !important;
        width: 0 !important;
    }

    /* Hide the divider too */
    .lnh-search-divider {
        display: none !important;
    }

    /* Input takes full remaining space */
    .lnh-search-box input {
        flex: 1 !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 12px 14px !important;
        border-radius: 8px 0 0 8px !important;
    }

    /* Search button flush to the right */
    .lnh-search-btn {
        flex-shrink: 0 !important;
        border-radius: 0 8px 8px 0 !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    /* Hide the search btn text on tiny screens, show icon only */
    .lnh-search-btn .btn-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .lnh-search-btn {
        padding: 12px 14px !important;
    }
}

/* ══════════════════════════════════════
   FIX 1: Select dropdown option colors
   (Register modal + hero search)
══════════════════════════════════════ */

/* Fix ALL selects — options must be white bg, dark text */
select,
select option {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
}

select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 46, 74, 0.12);
}

/* Modal select field specifically */
.form-wrapper select.inputField {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
}

.form-wrapper select.inputField:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 46, 74, 0.12);
    outline: none;
}

.form-wrapper select.inputField option {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    padding: 8px;
}


/* ══════════════════════════════════════
   FIX 2: Mobile hero search
   Select takes too much space — input hidden
══════════════════════════════════════ */

/* DESKTOP: Normal search box layout */
.lnh-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 20px;
    max-width: 700px;
    box-shadow: var(--shadow);
    gap: 0;
    flex-wrap: nowrap;
}

.lnh-search-box select {
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    padding: 11px 14px;
    font-size: 13px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-weight: 500;
    flex-shrink: 0;
    max-width: 140px;
    appearance: auto;
    -webkit-appearance: auto;
}

.lnh-search-box select option {
    background: #ffffff !important;
    color: var(--text-dark) !important;
}

.lnh-search-divider {
    width: 1px;
    height: 28px;
    background: var(--border-light);
    flex-shrink: 0;
    margin: 0 8px;
}

.lnh-search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    min-width: 0; /* CRITICAL — allows flex child to shrink */
}

.lnh-search-box input::placeholder {
    color: var(--text-muted);
}

.lnh-search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.lnh-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(1, 46, 74, 0.25);
}

/* MOBILE: Hide select, show input + button only */
@media (max-width: 767px) {
    .lnh-search-box {
        padding: 5px;
        border-radius: 10px;
        flex-wrap: nowrap !important;
        max-width: 100%;
    }

    /* Hide category select on mobile */
    .lnh-search-box select,
    .lnh-search-divider {
        display: none !important;
    }

    /* Input fills the space */
    .lnh-search-box input {
        flex: 1 1 auto;
        width: 0; /* flex shrink fix */
        min-width: 0;
        padding: 13px 14px;
        border-radius: 8px 0 0 8px;
        font-size: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--text-dark) !important;
        background: transparent !important;
    }

    /* Button stays right */
    .lnh-search-btn {
        flex-shrink: 0;
        border-radius: 0 8px 8px 0;
        padding: 13px 16px;
    }

    /* Hide text on very small, show icon */
    .lnh-search-btn .btn-text {
        display: none;
    }
}

@media (min-width: 768px) {
    .lnh-search-btn .btn-text {
        display: inline;
    }
}


/* ══════════════════════════════════════
   FIX 3: Input always visible override
   (belt & suspenders — removes any
    conflicting width:100% on mobile)
══════════════════════════════════════ */

@media (max-width: 991px) {
    /* Remove old conflicting rules */
    .lnh-search-box {
        flex-wrap: nowrap !important;
    }

    .lnh-search-box input {
        width: auto !important;  /* not 100% */
        flex: 1 !important;
    }

    .lnh-search-box select {
        display: none !important;
        width: 0 !important;
        padding: 0 !important;
    }

    .lnh-search-divider {
        display: none !important;
    }
}  /* ← CLOSE THE MEDIA QUERY HERE */


/* ═══════════════════════════════════════════════════════════════
   LA-NET HUB — AUTH PAGES CSS  (NOW OUTSIDE MEDIA QUERY)
   High-specificity selectors to override existing styles
═══════════════════════════════════════════════════════════════ */

/* ── SECTION WRAPPER ─────────────────────────────────────────── */
section.lnh-auth-section,
.lnh-auth-section {
    min-height: 85vh !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%) !important;
    padding: 60px 0 !important;
    position: relative;
}

/* ── CARD ────────────────────────────────────────────────────── */
.lnh-auth-section .lnh-auth-card {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 44px 40px !important;
    box-shadow: 0 20px 60px rgba(1,46,74,0.12), 0 4px 16px rgba(1,46,74,0.06) !important;
    border: 1px solid var(--border-light) !important;
    position: relative;
}

/* ── LOGO ─────────────────────────────────────────────────────── */
.lnh-auth-section .lnh-auth-logo {
    text-align: center !important;
    margin-bottom: 20px !important;
}

/* ── TITLE ───────────────────────────────────────────────────── */
.lnh-auth-section .lnh-auth-title {
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    text-align: center !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.lnh-auth-section .lnh-auth-sub {
    font-size: .9rem !important;
    color: var(--text-gray) !important;
    text-align: center !important;
    margin-bottom: 26px !important;
    line-height: 1.6 !important;
}

/* ── ALERTS ───────────────────────────────────────────────────── */
.lnh-auth-section .lnh-alert {
    padding: 12px 16px !important;
    border-radius: 10px !important;
    font-size: .88rem !important;
    font-weight: 600 !important;
    margin-bottom: 18px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
}
.lnh-auth-section .lnh-alert-success {
    background: var(--bg-light) !important;
    color: var(--primary) !important;
    border: 1px solid var(--border-light) !important;
}
.lnh-auth-section .lnh-alert-error {
    background: var(--bg-light) !important;
    color: var(--primary) !important;
    border: 1px solid var(--border-light) !important;
}

/* ── GOOGLE BUTTON ───────────────────────────────────────────── */
.lnh-auth-section .lnh-btn-google {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: 10px !important;
    padding: 13px 20px !important;
    font-size: .92rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 1px 4px rgba(1,46,74,0.06) !important;
    transition: all .2s ease !important;
    margin-bottom: 0 !important;
}
.lnh-auth-section .lnh-btn-google:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 4px 16px rgba(1,46,74,.14) !important;
    transform: translateY(-1px) !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

/* ── DIVIDER ─────────────────────────────────────────────────── */
.lnh-auth-section .lnh-divider {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 22px 0 !important;
    color: var(--text-muted) !important;
    font-size: .75rem !important;
    text-transform: uppercase !important;
    letter-spacing: .8px !important;
    font-weight: 600 !important;
}
.lnh-auth-section .lnh-divider::before,
.lnh-auth-section .lnh-divider::after {
    content: '' !important;
    flex: 1 !important;
    height: 1px !important;
    background: var(--border-light) !important;
}

/* ── FORM GROUPS ─────────────────────────────────────────────── */
.lnh-auth-section .lnh-form-group {
    margin-bottom: 18px !important;
}

/* ── LABELS ──────────────────────────────────────────────────── */
.lnh-auth-section .lnh-label {
    display: block !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin-bottom: 6px !important;
    letter-spacing: .1px !important;
}

/* ── INPUT WRAPPER ───────────────────────────────────────────── */
.lnh-auth-section .lnh-input-wrap {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.lnh-auth-section .lnh-input-icon {
    position: absolute !important;
    left: 14px !important;
    color: var(--text-muted) !important;
    font-size: .88rem !important;
    pointer-events: none !important;
    z-index: 2 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* ── INPUTS ──────────────────────────────────────────────────── */
.lnh-auth-section .lnh-input {
    width: 100% !important;
    padding: 13px 44px 13px 42px !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: 10px !important;
    font-size: .92rem !important;
    color: var(--text-dark) !important;
    background: var(--bg-light) !important;
    transition: border-color .2s, box-shadow .2s, background .2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    outline: none !important;
    margin-bottom: 0 !important;
    display: block !important;
}
.lnh-auth-section .lnh-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(1,46,74,.12) !important;
    background: #ffffff !important;
    outline: none !important;
}
.lnh-auth-section select.lnh-input {
    padding-right: 14px !important;
    cursor: pointer !important;
    background-color: var(--bg-light) !important;
    color: var(--text-dark) !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
}
.lnh-auth-section select.lnh-input option {
    background: #ffffff !important;
    color: var(--text-dark) !important;
}

/* ── EYE BUTTON ──────────────────────────────────────────────── */
.lnh-auth-section .lnh-eye-btn {
    position: absolute !important;
    right: 12px !important;
    background: none !important;
    border: none !important;
    color: var(--text-muted) !important;
    cursor: pointer !important;
    font-size: .9rem !important;
    padding: 4px !important;
    z-index: 2 !important;
    line-height: 1 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.lnh-auth-section .lnh-eye-btn:hover { color: var(--primary) !important; }

/* ── CHECKBOX ────────────────────────────────────────────────── */
.lnh-auth-section .lnh-checkbox {
    width: 17px !important;
    height: 17px !important;
    accent-color: var(--primary) !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* ── TERMS BOX ───────────────────────────────────────────────── */
.lnh-auth-section .lnh-terms-box {
    background: var(--bg-light) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    margin-bottom: 20px !important;
}
.lnh-auth-section .lnh-terms-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: .84rem !important;
    color: var(--text-dark) !important;
    line-height: 1.6 !important;
    cursor: pointer !important;
    margin: 0 !important;
}

/* ── PRIMARY BUTTON ──────────────────────────────────────────── */
.lnh-auth-section .lnh-btn-primary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px 24px !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all .3s !important;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(1,46,74,.22) !important;
    letter-spacing: .2px !important;
}
.lnh-auth-section .lnh-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(1,46,74,.28) !important;
    color: #ffffff !important;
}
.lnh-auth-section .lnh-btn-primary:disabled {
    opacity: .7 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* ── OUTLINE BUTTON ──────────────────────────────────────────── */
.lnh-auth-section .lnh-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all .2s !important;
    text-decoration: none !important;
}
.lnh-auth-section .lnh-btn-outline:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
}

/* ── LINKS ───────────────────────────────────────────────────── */
.lnh-auth-section .lnh-link-strong {
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
.lnh-auth-section .lnh-link-strong:hover {
    text-decoration: underline !important;
    color: var(--primary-dark) !important;
}
.lnh-auth-section .lnh-link-small {
    font-size: .8rem !important;
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.lnh-auth-section .lnh-link-small:hover { text-decoration: underline !important; }

/* ── FOOTER NOTES ────────────────────────────────────────────── */
.lnh-auth-section .lnh-auth-footer {
    text-align: center !important;
    font-size: .9rem !important;
    color: var(--text-gray) !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}
.lnh-auth-privacy {
    text-align: center !important;
    font-size: .74rem !important;
    color: var(--text-muted) !important;
    margin-top: 14px !important;
    line-height: 1.6 !important;
}
.lnh-auth-privacy a { color: var(--text-muted) !important; text-decoration: underline !important; }

/* ── OTP ICON ────────────────────────────────────────────────── */
.lnh-auth-section .lnh-otp-icon {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    color: #ffffff !important;
    margin: 0 auto 16px !important;
    box-shadow: 0 6px 20px rgba(1,46,74,.24) !important;
}

/* ── OTP 6 BOXES ─────────────────────────────────────────────── */
.lnh-auth-section .lnh-otp-inputs {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 12px 0 8px !important;
}
.lnh-auth-section .lnh-otp-box {
    width: 50px !important;
    height: 56px !important;
    border: 2px solid var(--border-light) !important;
    border-radius: 12px !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    color: var(--primary) !important;
    background: var(--bg-light) !important;
    transition: border-color .2s, box-shadow .2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.lnh-auth-section .lnh-otp-box:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(1,46,74,.12) !important;
    outline: none !important;
    background: #ffffff !important;
}

/* ── PASSWORD STRENGTH ───────────────────────────────────────── */
.lnh-auth-section .lnh-password-tips {
    background: var(--bg-light) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    margin-bottom: 16px !important;
    border: 1px solid var(--border-light) !important;
}
.lnh-auth-section .lnh-tip-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px 16px !important;
    font-size: .78rem !important;
    color: var(--text-dark) !important;
    font-weight: 600 !important;
}
.lnh-auth-section .lnh-strength-bar {
    height: 5px !important;
    background: var(--border-light) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin-top: 8px !important;
}
.lnh-auth-section .lnh-strength-fill {
    height: 100% !important;
    border-radius: 10px !important;
    width: 0 !important;
    transition: width .4s ease, background .4s ease !important;
}
.lnh-auth-section .lnh-strength-label {
    font-size: .75rem !important;
    font-weight: 700 !important;
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    min-height: 18px !important;
}

/* ── AUTH RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 576px) {
    section.lnh-auth-section,
    .lnh-auth-section         { padding: 32px 0 !important; }
    .lnh-auth-section .lnh-auth-card  { padding: 28px 18px !important; border-radius: 16px !important; }
    .lnh-auth-section .lnh-auth-title { font-size: 1.3rem !important; }
    .lnh-auth-section .lnh-otp-box    { width: 40px !important; height: 46px !important; font-size: 1.2rem !important; }
    .lnh-auth-section .lnh-otp-inputs { gap: 6px !important; }
}

/* ══════════════════════════════════════
   BLOG / NEWS MODULE STYLES
══════════════════════════════════════ */
.lnh-news-shell {
    background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
    min-height: 70vh;
}

.lnh-news-card,
.lnh-admin-card,
.lnh-news-article,
.lnh-share-card,
.lnh-related-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(1, 46, 74, 0.08);
}

.lnh-news-card {
    overflow: hidden;
    height: 100%;
}

.lnh-news-image-link {
    display: block;
    overflow: hidden;
}

.lnh-news-thumb,
.lnh-news-hero-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.lnh-news-hero-image {
    height: 320px;
    border-radius: 18px;
}

.lnh-news-body {
    padding: 20px;
}

.lnh-news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.lnh-news-pill {
    background: rgba(25, 118, 210, 0.12);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
}

.lnh-news-card h3 a,
.lnh-related-item,
.lnh-news-link {
    color: var(--primary-dark);
    text-decoration: none;
}

.lnh-news-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lnh-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.9rem;
}

.lnh-news-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.lnh-news-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}

.lnh-news-content {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1rem;
    white-space: pre-line;
}

.lnh-empty-state,
.lnh-admin-card,
.lnh-share-card,
.lnh-related-card {
    padding: 24px;
}

.lnh-admin-card {
    margin-bottom: 12px;
}

.lnh-share-card .btn,
.lnh-admin-card .btn {
    border-radius: 999px;
}

.lnh-related-item {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f7fbff;
    border: 1px solid #e5f1fb;
}

.lnh-section-label {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .lnh-news-hero-image {
        height: 240px;
    }

    .lnh-news-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .lnh-empty-state,
    .lnh-admin-card,
    .lnh-share-card,
    .lnh-related-card {
        padding: 20px;
    }
}