/* ============================================
   LET'S MOVE GLOBALLY - MAIN STYLESHEET
   Premium Dark Blue + Yellow Theme
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --navy:        #0d1b2e;
    --navy-mid:    #111f35;
    --navy-card:   #13243d;
    --navy-border: #1e3a5f;
    --gold:        #FFB800;
    --gold-dark:   #e6a500;
    --gold-light:  #ffd166;
    --white:       #ffffff;
    --gray-100:    #f8f9fa;
    --gray-200:    #e9ecef;
    --text-muted:  #8899aa;
    --text-light:  #ccd6e0;
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --shadow-sm:   0 2px 8px rgba(0,0,0,.3);
    --shadow-md:   0 8px 32px rgba(0,0,0,.4);
    --shadow-lg:   0 20px 60px rgba(0,0,0,.5);
    --shadow-gold: 0 0 24px rgba(255,184,0,.2);
    --transition:  all .3s cubic-bezier(.4,0,.2,1);
    --font-main:   'Space Grotesk', sans-serif;
    --font-display:'Syne', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* === SCROLL PROGRESS === */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    width: 0%;
    transition: width .1s linear;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-light); margin-bottom: 1rem; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-main);
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: .75rem 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,184,0,.3);
}
.btn-primary-gold:hover {
    background: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,184,0,.45);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid rgba(255,184,0,.5);
    color: var(--white);
}
.btn-outline-gold:hover {
    background: rgba(255,184,0,.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,.2);
    color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    background: rgba(13,27,46,.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 1.2rem 0;
    transition: all .4s ease;
}
#mainNav.scrolled {
    background: rgba(13,27,46,.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(255,184,0,.1);
    padding: .8rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.navbar-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo-icon {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}
.logo-text strong { font-weight: 700; color: var(--gold); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,.8) !important;
    font-weight: 500;
    font-size: .88rem;
    padding: .5rem .75rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

/* Hamburger */
.navbar-toggler {
    border: none;
    background: none;
    display: flex; flex-direction: column; gap: 5px;
    padding: .5rem;
}
.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .12;
}
.hero-blob-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -200px; left: -200px;
}
.hero-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #1e5fa8 0%, transparent 70%);
    bottom: -100px; right: -100px;
}

.hero-content { position: relative; z-index: 2; padding: 3rem 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,184,0,.12);
    border: 1px solid rgba(255,184,0,.3);
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.5); }
}

.hero-heading { margin-bottom: 1.5rem; }
.hero-heading .line-white { color: var(--white); display: block; }
.hero-heading .line-gold { color: var(--gold); display: block; }

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: .75rem; }
.hero-buttons .btn { padding: .9rem 2rem; font-size: 1rem; }

.hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.hero-feature-icon {
    width: 40px; height: 40px;
    background: rgba(255,184,0,.1);
    border: 1px solid rgba(255,184,0,.2);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0;
}
.hero-feature-title {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .1rem;
    font-family: var(--font-main);
}
.hero-feature-sub {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255,184,0,.08);
    height: 100%;
    min-height: 520px;
    max-height: 580px;
}
.hero-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
    display: block;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,46,.2) 0%, transparent 60%);
    border-radius: var(--radius-xl);
}

/* ── DESTINATIONS GRID (redesigned v2) ── */

/* ── NEW DESTINATIONS GRID ── */
.destinations-grid-wrap {
    background: rgba(255,184,0,.04);
    border-top: 1px solid rgba(255,184,0,.1);
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 1.1rem 0;
    position: relative;
    z-index: 2;
}
.dest-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
}
.dest-grid-header > span {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
}
.dest-grid-header > span i { color: var(--gold); }
.dest-grid-all {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: opacity .2s;
}
.dest-grid-all:hover { opacity: .75; color: var(--gold); }
.dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .5rem;
}
.dest-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .6rem .4rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all .2s;
    text-align: center;
}
.dest-grid-card:hover {
    background: rgba(255,184,0,.08);
    border-color: rgba(255,184,0,.25);
    transform: translateY(-2px);
}
.dest-grid-flag { font-size: 1.5rem; line-height: 1; }
.dest-grid-name {
    font-size: .75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.dest-grid-tag {
    font-size: .6rem;
    color: var(--gold);
    font-weight: 600;
    opacity: .8;
}
/* Mobile: 3 per row x 2 rows */
@media (max-width: 767px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: .4rem;
    }
    .dest-grid-card { padding: .55rem .3rem; }
    .dest-grid-flag { font-size: 1.3rem; }
    .dest-grid-name { font-size: .7rem; }
    .dest-grid-tag { display: none; }
    .dest-grid-header { margin-bottom: .65rem; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-dark { background: var(--navy); }
.section-darker { background: var(--navy-mid); }
.section-card-bg { background: #0a1628; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.section-py { padding: 6rem 0; }
.section-py-sm { padding: 4rem 0; }

/* ============================================
   INCOME PATH CARDS (Choose your path)
   ============================================ */
.path-section { background: var(--navy-mid); }

.path-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.path-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}
.path-card:hover {
    border-color: rgba(255,184,0,.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--shadow-gold);
}
.path-card:hover::before { opacity: 1; }

.path-icon {
    width: 56px; height: 56px;
    background: rgba(255,184,0,.1);
    border: 1px solid rgba(255,184,0,.2);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.path-card:hover .path-icon {
    background: rgba(255,184,0,.2);
    border-color: var(--gold);
}

.path-card h3 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
    font-family: var(--font-main);
    font-weight: 700;
}
.path-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }

.path-explore {
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition);
}
.path-card:hover .path-explore { gap: .8rem; }

/* ============================================
   COUNTRY CARDS
   ============================================ */
.country-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.country-card:hover {
    border-color: rgba(255,184,0,.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.country-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.country-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.country-card:hover .country-img-wrap img { transform: scale(1.08); }
.country-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,46,.8) 0%, transparent 60%);
}

.country-card-body { padding: 1.75rem; }
.country-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .6rem;
    font-family: var(--font-main);
    color: var(--white);
}
.country-desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}
.country-salary-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .3rem;
}
.country-salary {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-main);
    margin-bottom: 1.25rem;
}

.country-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--white);
    font-weight: 600;
    font-size: .85rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    padding: .65rem 1rem;
    width: 100%;
    transition: var(--transition);
}
.country-cta:hover {
    background: rgba(255,184,0,.1);
    border-color: rgba(255,184,0,.3);
    color: var(--gold);
}
.country-cta i { margin-left: auto; transition: var(--transition); }
.country-cta:hover i { transform: translateX(4px); }

/* ============================================
   FAILURE POINTS SECTION
   ============================================ */
.fail-section { background: #080f1c; }

.fail-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition);
}
.fail-card:hover {
    border-color: rgba(255,184,0,.15);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.fail-icon {
    width: 48px; height: 48px;
    background: rgba(255,184,0,.08);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.fail-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .6rem;
    font-family: var(--font-main);
    color: var(--white);
}
.fail-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================
   COMPARISON SECTION
   ============================================ */
.compare-section { background: var(--navy-mid); }
.compare-tabs { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 2.5rem; }

.compare-tab-btn {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--text-light);
    padding: .65rem 1.5rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}
.compare-tab-btn:hover,
.compare-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.compare-table-wrap {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
    font-size: .9rem;
}
.compare-table thead { background: rgba(255,184,0,.08); }
.compare-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.compare-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: var(--transition);
}
.compare-table tbody tr:hover { background: rgba(255,255,255,.02); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td { padding: 1.1rem 1.5rem; }
.compare-table td:first-child { color: var(--white); font-weight: 600; }
.badge-good { color: #4ade80; font-weight: 600; }
.badge-medium { color: var(--gold); font-weight: 600; }
.badge-bad { color: #f87171; font-weight: 600; }

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills-section { background: var(--navy); }

.skill-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.skill-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(255,184,0,.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.skill-card:hover {
    border-color: rgba(255,184,0,.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--shadow-gold);
}
.skill-card:hover::before { opacity: 1; }

.skill-icon {
    width: 50px; height: 50px;
    background: rgba(255,184,0,.1);
    border: 1px solid rgba(255,184,0,.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.skill-card:hover .skill-icon {
    background: rgba(255,184,0,.2);
    border-color: var(--gold);
}
.skill-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    font-family: var(--font-main);
    color: var(--white);
}
.skill-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.skill-income {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(255,184,0,.08);
    border-radius: 50px;
    padding: .25rem .75rem;
    display: inline-block;
}

/* ============================================
   LEAD GEN / FREE GUIDE SECTION
   ============================================ */
#free-guide {
    background: linear-gradient(135deg, #080f1c 0%, var(--navy-mid) 100%);
    border-top: 1px solid rgba(255,184,0,.1);
    border-bottom: 1px solid rgba(255,184,0,.1);
}

.guide-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.guide-image-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.guide-checklist { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.guide-checklist li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .4rem 0;
    color: var(--text-light);
    font-size: .9rem;
}
.guide-checklist li i { color: var(--gold); font-size: .85rem; }

.guide-form { background: rgba(255,255,255,.02); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(255,255,255,.06); }

.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: .5rem;
}
.form-control {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: .85rem 1.1rem;
    font-family: var(--font-main);
    font-size: .9rem;
    transition: var(--transition);
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
    border-color: rgba(255,184,0,.4);
    background: rgba(255,184,0,.04);
    box-shadow: 0 0 0 3px rgba(255,184,0,.1);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { background: var(--navy); }

.blog-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.blog-card:hover {
    border-color: rgba(255,184,0,.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #0a1628;
}
.blog-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-category {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    display: inline-block;
}
.blog-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.4;
    font-family: var(--font-main);
    color: var(--white);
    transition: var(--transition);
}
.blog-card:hover h4 { color: var(--gold); }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: .78rem;
    margin-top: 1rem;
}
.blog-meta i { color: var(--gold); }

.no-articles-box {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}
.no-articles-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: .6;
}
.no-articles-box h4 { font-size: 1.25rem; margin-bottom: .75rem; font-family: var(--font-main); }
.no-articles-box p { color: var(--text-muted); font-size: .9rem; }

/* Blog Insights Header */
.blog-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #060d1a;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main { padding: 5rem 0 3rem; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.footer-logo strong { color: var(--gold); }
.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.footer-tagline-inline {
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: .01em;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: rgba(255,184,0,.1);
    border-color: rgba(255,184,0,.3);
    color: var(--gold);
}

.footer-heading {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.footer-links a:hover { color: var(--gold); padding-left: .3rem; }

.footer-newsletter-text { color: var(--text-muted); font-size: .85rem; margin-bottom: 1rem; line-height: 1.55; }
.newsletter-input-group {
    display: flex;
    gap: .5rem;
}
.newsletter-input-group input {
    flex: 1;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: .7rem 1rem;
    font-size: .85rem;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
    min-width: 0;
}
.newsletter-input-group input:focus {
    border-color: rgba(255,184,0,.4);
    background: rgba(255,184,0,.04);
}
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-input-group .btn { padding: .7rem 1.1rem; font-size: .85rem; flex-shrink: 0; }
.newsletter-feedback { margin-top: .5rem; font-size: .8rem; }
.newsletter-feedback.success { color: #4ade80; }
.newsletter-feedback.error { color: #f87171; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
}
.footer-copy {
    color: var(--text-muted);
    font-size: .78rem;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    line-height: 1.5;
}
.footer-copy a {
    color: var(--text-muted);
    transition: color .2s;
}
.footer-copy a:hover { color: var(--gold); }
.footer-disclaimer-inline {
    color: rgba(255,255,255,.3);
    font-size: .75rem;
}
.footer-legal-links { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-legal-links a { color: var(--text-muted); font-size: .82rem; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links span { color: rgba(255,255,255,.15); }
.footer-copyright { color: var(--text-muted); font-size: .82rem; margin: 0; }
.footer-disclaimer {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255,255,255,.04);
}
.footer-disclaimer p { font-size: .75rem; color: rgba(255,255,255,.25); margin: 0; line-height: 1.6; }

/* Mobile — wrap disclaimer to second line only if needed */
@media (max-width: 768px) {
    .footer-disclaimer-inline {
        display: block;
        width: 100%;
        margin-top: .25rem;
    }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    background: #20ba5a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(0,0,0,.85);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .4rem .8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: .3rem;
}
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.lmg-toast {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: .9rem;
    max-width: 320px;
    animation: slideInRight .3s ease;
}
.lmg-toast.success { border-left: 3px solid #4ade80; }
.lmg-toast.error   { border-left: 3px solid #f87171; }
.lmg-toast.info    { border-left: 3px solid var(--gold); }
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.lmg-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--text-muted);
    padding: 1.5rem 0;
}
.lmg-breadcrumb a { color: var(--text-muted); }
.lmg-breadcrumb a:hover { color: var(--gold); }
.lmg-breadcrumb i { font-size: .6rem; }
.lmg-breadcrumb .current { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,184,0,.05) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,184,0,.1);
    border: 1px solid rgba(255,184,0,.25);
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 560px; }

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    padding: .5rem .5rem .5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 560px;
}
.search-bar-wrap input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-size: .95rem;
    font-family: var(--font-main);
}
.search-bar-wrap input::placeholder { color: var(--text-muted); }
.search-bar-wrap .btn { border-radius: 50px; padding: .65rem 1.5rem; }

/* ============================================
   PAGINATION
   ============================================ */
.lmg-pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; }
.lmg-pagination a,
.lmg-pagination span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}
.lmg-pagination a:hover,
.lmg-pagination .active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-light-custom { color: var(--text-light) !important; }
.bg-navy-card { background: var(--navy-card); }
.border-gold-soft { border-color: rgba(255,184,0,.2) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,184,0,.15), transparent);
    margin: 0;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] { transition-property: opacity, transform !important; }

.fade-up { animation: fadeUp .6s ease both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13,27,46,.97);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255,255,255,.08);
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .nav-cta { margin-top: 1rem; }
    .hero-section { padding-top: 80px; }
    .hero-image-wrap {
        min-height: 260px !important;
        max-height: 320px !important;
        margin-top: 1.5rem;
        border-radius: var(--radius-md);
    }
    .hero-image-wrap img {
        min-height: 260px !important;
        max-height: 320px !important;
        border-radius: var(--radius-md);
    }
    .hero-features { grid-template-columns: 1fr; }
    .stats-row { justify-content: center; }
    .blog-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
    .section-py { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    .hero-buttons { flex-direction: column; margin-bottom: .5rem !important; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .newsletter-input-group { flex-direction: column; }
    .compare-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; }
    .compare-tab-btn { flex-shrink: 0; }
    .whatsapp-float { bottom: 1rem; right: 1rem; width: 48px; height: 48px; font-size: 1.2rem; }
    .explore-all-link { display: none; }
}

@media (max-width: 575px) {
    .hero-features { grid-template-columns: 1fr; }
    .footer-main { padding: 3rem 0 2rem; }
    .guide-form { padding: 1.5rem; }
}

/* ============================================
   ADMIN PANEL QUICK STYLES
   ============================================ */
.admin-body {
    background: #0a0f1a;
    color: var(--white);
    font-family: var(--font-main);
}

.admin-sidebar {
    width: 260px;
    background: #060d1a;
    border-right: 1px solid rgba(255,255,255,.06);
    min-height: 100vh;
    position: fixed;
    left: 0; top: 0;
    z-index: 100;
    padding: 1.5rem 0;
    overflow-y: auto;
    transition: var(--transition);
}
.admin-main { margin-left: 260px; min-height: 100vh; }
.admin-topbar {
    background: #060d1a;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 50;
}
.admin-content { padding: 2rem; }

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 2px solid transparent;
}
.admin-nav-link:hover,
.admin-nav-link.active {
    color: var(--gold);
    background: rgba(255,184,0,.05);
    border-left-color: var(--gold);
}
.admin-nav-link i { width: 18px; text-align: center; }

.admin-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.admin-stat-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}
.admin-stat-number { font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-display); }
.admin-stat-label { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    padding: .9rem 1rem;
    background: rgba(255,184,0,.06);
    color: var(--gold);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-table td {
    padding: .9rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
    color: var(--text-light);
    font-size: .88rem;
}
.admin-table tr:hover td { background: rgba(255,255,255,.02); }

.badge-status {
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 50px;
    display: inline-block;
}
.badge-published { background: rgba(74,222,128,.1); color: #4ade80; }
.badge-draft     { background: rgba(148,163,184,.1); color: #94a3b8; }
.badge-new       { background: rgba(255,184,0,.1); color: var(--gold); }

@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
}

/* ============================================
   TOOLS DROPDOWN NAVBAR
   ============================================ */
.lmg-dropdown {
    background: var(--navy-card) !important;
    border: 1px solid rgba(255,184,0,.2) !important;
    border-radius: var(--radius-md) !important;
    padding: .5rem !important;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(0,0,0,.4) !important;
}
.lmg-dropdown .dropdown-item {
    color: var(--text-light) !important;
    font-size: .84rem;
    border-radius: 6px;
    padding: .5rem .9rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: all .15s;
}
.lmg-dropdown .dropdown-item i {
    color: var(--gold);
    font-size: .8rem;
    width: 14px;
}
.lmg-dropdown .dropdown-item:hover {
    background: rgba(255,184,0,.08) !important;
    color: var(--gold) !important;
}
.navbar .dropdown-toggle::after { border-top-color: var(--gold); }

/* ============================================
   TOOLS PAGES — SHARED CALCULATOR STYLES
   ============================================ */
.calc-layout { display:grid; grid-template-columns:380px 1fr; gap:2rem; align-items:start; }
.calc-card { background:var(--navy-card); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius-xl); padding:1.75rem; margin-bottom:1.25rem; }
.calc-card-title { font-family:var(--font-main); font-size:1rem; font-weight:700; color:var(--white); margin-bottom:1.5rem; display:flex; align-items:center; gap:.5rem; }
.calc-card-title i { color:var(--gold); }
.calc-field { margin-bottom:1.35rem; }
.calc-field label { display:block; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); margin-bottom:.5rem; }
.calc-field select, .calc-field input[type=number] { width:100%; background:var(--navy); border:1px solid rgba(255,255,255,.1); color:var(--white); border-radius:8px; padding:.7rem .9rem; font-size:.9rem; font-family:var(--font-main); transition:.2s; appearance:auto; }
.calc-field select:focus, .calc-field input:focus { border-color:rgba(255,184,0,.4); outline:none; box-shadow:0 0 0 3px rgba(255,184,0,.08); }
.calc-results-panel { }
.calc-empty { text-align:center; padding:4rem 2rem; background:var(--navy-card); border:1px solid rgba(255,255,255,.07); border-radius:var(--radius-xl); }
.calc-empty h3 { color:var(--white); margin-bottom:.5rem; }
.calc-empty p { color:var(--text-muted); font-size:.9rem; }
.calc-result-cta { background:rgba(255,184,0,.05); border:1px solid rgba(255,184,0,.15); border-radius:var(--radius-lg); padding:1.75rem; text-align:center; margin-top:1.25rem; }
.calc-result-cta h3 { font-family:var(--font-main); color:var(--white); margin-bottom:.5rem; }
.calc-result-cta p { color:var(--text-muted); font-size:.88rem; margin-bottom:1.25rem; }
.radio-group { display:flex; gap:1rem; flex-wrap:wrap; }
.radio-opt { display:flex; align-items:center; gap:.4rem; font-size:.85rem; color:var(--text-light); cursor:pointer; }
.radio-opt input { accent-color:var(--gold); }
@media(max-width:900px) { .calc-layout { grid-template-columns:1fr; } }

/* ============================================
   LMG NAVBAR — COMPLETE REBUILD v7.0
   Zero Bootstrap nav dependency
   ============================================ */

/* Overlay */
#mobileOverlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 998;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s, visibility .3s;
}

/* Main nav bar */
#mainNav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(9,18,33,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,184,0,.08);
    transition: padding .3s;
}
#mainNav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.lmg-nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 1.25rem;
    height: 65px;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

/* Logo */
.lmg-logo {
    display: flex; align-items: center; gap: .6rem;
    text-decoration: none; flex-shrink: 0;
}
.lmg-logo .logo-icon {
    width: 36px; height: 36px; background: var(--gold);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: #0d1b2e; font-size: 1rem;
    flex-shrink: 0;
}
.lmg-logo .logo-text {
    font-family: var(--font-main); font-size: 1rem;
    font-weight: 500; color: #fff;
}
@media (max-width: 400px) {
    .lmg-logo .logo-text { font-size: .88rem; }
    .lmg-logo .logo-icon { width: 30px; height: 30px; font-size: .85rem; }
}
.lmg-logo .logo-text strong { color: var(--gold); font-weight: 700; }

/* Desktop menu */
.lmg-menu {
    display: flex; align-items: center;
    list-style: none; margin: 0 auto; padding: 0; gap: .15rem;
}
.lmg-menu > li > a, .lmg-menu > li > button {
    display: flex; align-items: center; gap: .25rem;
    padding: .5rem .7rem;
    color: rgba(255,255,255,.82); font-size: .88rem;
    font-weight: 500; text-decoration: none;
    border-radius: 6px; transition: color .2s, background .2s;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-main); white-space: nowrap;
}
.lmg-menu > li > a:hover,
.lmg-menu > li > button:hover,
.lmg-menu > li > a.lmg-active { color: var(--gold); }

/* Tools dropdown */
.lmg-has-dropdown { position: relative; }
.lmg-dropdown {
    display: none;
    position: absolute; top: calc(100% + 6px); left: 50%;
    transform: translateX(-50%);
    background: #0d1b2e;
    border: 1px solid rgba(255,184,0,.2);
    border-radius: 12px; padding: .5rem;
    min-width: 220px; list-style: none;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.lmg-dropdown li a {
    display: flex; align-items: center; gap: .6rem;
    padding: .6rem .85rem; border-radius: 8px;
    color: #c8d8e8; text-decoration: none;
    font-size: .84rem; font-weight: 500;
    transition: background .15s, color .15s; white-space: nowrap;
}
.lmg-dropdown li a:hover { background: rgba(255,184,0,.1); color: var(--gold); }
.lmg-dropdown li a i { color: var(--gold); font-size: .78rem; width: 14px; }
.lmg-divider { border-top: 1px solid rgba(255,255,255,.08); margin: .3rem 0; }

/* CTA */
.lmg-nav-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }

/* Hamburger — hidden on desktop */
.lmg-burger {
    display: none; flex-direction: column; justify-content: center;
    align-items: center; gap: 5px;
    width: 42px; height: 42px;
    background: rgba(255,184,0,.12);
    border: 1.5px solid rgba(255,184,0,.35);
    border-radius: 8px; cursor: pointer; padding: 0;
    flex-shrink: 0;
}
.lmg-burger span {
    display: block; width: 20px; height: 2px;
    background: var(--gold); border-radius: 2px;
    transition: all .3s;
}

/* ============================================
   MOBILE DRAWER — completely separate from nav
   No Bootstrap. No class toggling via PHP.
   Opened/closed purely via inline JS styles.
   ============================================ */
.lmg-drawer {
    position: fixed; top: 0; right: -100%;
    width: 82%; max-width: 310px; height: 100vh;
    background: #0e2040;
    border-left: 2px solid rgba(255,184,0,.3);
    z-index: 9999;
    transition: right .3s ease;
    display: flex; flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,.6);
}
.lmg-drawer-head {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.lmg-close {
    width: 36px; height: 36px;
    background: rgba(255,184,0,.15);
    border: 1.5px solid rgba(255,184,0,.3);
    color: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; font-weight: 700;
}
.lmg-drawer-links {
    list-style: none; padding: .75rem 1.25rem;
    margin: 0; flex: 1;
}
.lmg-drawer-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
.lmg-drawer-links li:last-child { border-bottom: none; }
/* THE KEY FIX: direct a tags, no wrappers, full width tap target */
.lmg-drawer-links a {
    display: block;
    padding: .95rem 0;
    font-size: 1rem; font-weight: 600;
    color: #dde8f5; text-decoration: none;
    -webkit-tap-highlight-color: rgba(255,184,0,.2);
}
.lmg-drawer-links a:active,
.lmg-drawer-links a.lmg-active { color: var(--gold); }

/* Drawer tools submenu */
.lmg-drawer-tools button {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: .95rem 0;
    background: none; border: none;
    color: #dde8f5; font-size: 1rem; font-weight: 600;
    cursor: pointer; font-family: var(--font-main);
    -webkit-tap-highlight-color: rgba(255,184,0,.2);
}
#drawerToolsMenu {
    display: none; list-style: none;
    padding: 0 0 .5rem 1rem; margin: 0;
}
#drawerToolsMenu li { border-bottom: none; }
#drawerToolsMenu a {
    display: block; padding: .6rem 0;
    font-size: .9rem; font-weight: 500;
    color: #94a3b8; text-decoration: none;
    -webkit-tap-highlight-color: rgba(255,184,0,.2);
}
#drawerToolsMenu a:active { color: var(--gold); }

/* CTA at drawer bottom */
.lmg-drawer-cta {
    display: flex; flex-direction: column; gap: .6rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.lmg-drawer-cta .btn { width: 100%; text-align: center; }

/* ============================================
   RESPONSIVE — show/hide
   ============================================ */
@media (max-width: 991px) {
    .lmg-menu, .lmg-nav-cta { display: none; }
    .lmg-burger { display: flex; }
    .lmg-nav-inner {
        padding: 0 1rem;
        justify-content: space-between;
    }
    /* Ensure logo and burger never overlap */
    .lmg-logo { flex: 1; min-width: 0; }
    .lmg-burger { flex-shrink: 0; margin-left: .75rem; }
}
@media (min-width: 992px) {
    .lmg-drawer, #mobileOverlay { display: none !important; }
}

/* ============================================
   MISC FIXES
   ============================================ */
.skip-link { position: absolute; left: -9999px; top: -9999px; }
.skip-link:focus { left: 0; top: 0; z-index: 9999; background: var(--gold); color: #0d1b2e; padding: .4rem .9rem; }
.whatsapp-float { opacity: 1 !important; visibility: visible !important; }
.wa-tooltip { display: none !important; }
.back-to-top { position: fixed; bottom: 5.5rem; right: 1.25rem; width: 40px; height: 40px; background: rgba(255,184,0,.15); border: 1px solid rgba(255,184,0,.3); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .85rem; opacity: 0; visibility: hidden; transition: all .3s; z-index: 400; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.blog-content p, .blog-content li, .blog-content h2, .blog-content h3 { word-break: break-word; overflow-wrap: break-word; }


/* ============================================
   HOMEPAGE UPGRADES — Ticker + Who + Path
   ============================================ */

/* Find My Path hero link */
.hero-path-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .65rem;
    margin-bottom: .25rem;
    padding: .38rem .9rem;
    background: rgba(255,255,255,.04);
    border: 1px dashed rgba(255,184,0,.25);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: .78rem;
    transition: all .2s;
    width: fit-content;
    line-height: 1.3;
}
.hero-path-link:hover {
    background: rgba(255,184,0,.07);
    border-color: rgba(255,184,0,.45);
    color: var(--text-light);
}
.hero-path-link strong { color: var(--gold); }
.hero-path-icon { font-size: .95rem; flex-shrink: 0; }

/* ── SALARY TICKER ── */
.salary-ticker-wrap {
    background: #060d1a;
    border-top: 1px solid rgba(255,184,0,.08);
    border-bottom: 1px solid rgba(255,184,0,.08);
    padding: .65rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.ticker-label {
    flex-shrink: 0;
    padding: 0 1rem 0 1.5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    border-right: 1px solid rgba(255,184,0,.15);
    margin-right: .75rem;
}
.ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}
/* Fade edges */
.ticker-track::before,
.ticker-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.ticker-track::before { left: 0; background: linear-gradient(to right, #060d1a, transparent); }
.ticker-track::after  { right: 0; background: linear-gradient(to left, #060d1a, transparent); }

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 120s linear infinite;
    width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1.75rem;
    border-right: 1px solid rgba(255,255,255,.07);
    white-space: nowrap;
    cursor: default;
}
.ti-flag { font-size: 1rem; }
.ti-role { font-size: .82rem; font-weight: 700; color: var(--white); }
.ti-sep  { color: rgba(255,255,255,.2); font-size: .7rem; }
.ti-city { font-size: .78rem; color: var(--text-muted); }
.ti-salary { font-size: .82rem; font-weight: 700; color: var(--gold); }
.ti-badge {
    font-size: .65rem; font-weight: 700;
    background: rgba(74,222,128,.1);
    border: 1px solid rgba(74,222,128,.2);
    color: #4ade80;
    padding: .15rem .5rem;
    border-radius: 50px;
}

/* ── WHO ARE YOU SECTION ── */
.who-section {
    background: #080f1c;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.who-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.who-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-main);
    white-space: nowrap;
}
.who-sub {
    font-size: .82rem;
    color: var(--text-muted);
}
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .65rem;
}
.who-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: .9rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1.5px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}
.who-card:hover {
    background: rgba(255,184,0,.07);
    border-color: rgba(255,184,0,.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.who-emoji { font-size: 1.4rem; }
.who-label {
    font-size: .84rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.who-sub-text {
    font-size: .7rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.who-card:hover .who-label { color: var(--gold); }

/* Mobile */
@media (max-width: 768px) {
    .who-grid { grid-template-columns: repeat(3, 1fr); }
    .who-card { padding: .75rem .75rem; }
    .who-emoji { font-size: 1.2rem; }
    .who-label { font-size: .78rem; }
    .who-sub-text { display: none; }
    .ticker-label { display: none; }
    .salary-ticker-wrap { padding: .5rem 0; }
    .ti-city, .ti-badge { display: none; }
    .ti-sep:last-of-type { display: none; }
    .hero-path-link { font-size: .8rem; }
}
@media (max-width: 380px) {
    .who-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Pulse animation for live dot */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}


/* ── TICKER SECTION HEADING ── */
.salary-ticker-section {
    background: #060d1a;
    padding: .85rem 0 .4rem;
    border-top: 1px solid rgba(255,255,255,.05);
}
.ticker-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.ticker-section-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}
.ticker-section-title > span:first-of-type {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-main);
}
.ticker-section-sub {
    font-size: .75rem !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}
.ticker-live-dot {
    font-size: .45rem !important;
    color: #4ade80 !important;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}
.ticker-section-link {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    transition: opacity .2s;
}
.ticker-section-link:hover { opacity: .75; color: var(--gold); }

/* Mobile ticker heading */
@media (max-width: 768px) {
    .ticker-section-sub { display: none !important; }
    .salary-ticker-section { padding: .65rem 0 .3rem; }
    .ticker-section-title > span:first-of-type { font-size: .82rem; }
}


/* ============================================
   FINAL UI FIXES — May 2026
   ============================================ */

/* FIX 1: Newsletter form — row layout with proper button */
.newsletter-form {
    display: flex;
    gap: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
}
.newsletter-input {
    flex: 1;
    background: rgba(255,255,255,.07) !important;
    border: none !important;
    border-radius: 0 !important;
    color: var(--white) !important;
    padding: .75rem 1rem !important;
    font-size: .88rem !important;
    outline: none !important;
    box-shadow: none !important;
}
.newsletter-input::placeholder { color: var(--text-muted) !important; }
.newsletter-input:focus { background: rgba(255,255,255,.1) !important; }
.newsletter-btn {
    border-radius: 0 !important;
    padding: .75rem 1.1rem !important;
    flex-shrink: 0 !important;
    border: none !important;
}

/* FIX 2: Calculate Mine — reduce gap in ticker section */
.salary-ticker-section .container { padding: 0 1.5rem; }
.ticker-section-header { gap: 0; }
.ticker-section-link {
    margin-left: auto;
    padding-left: 1rem;
}

/* FIX 3: Hero path link — reduce gap from feature icons */
.hero-path-link {
    margin-top: .5rem !important;
    margin-bottom: 0 !important;
}
.hero-content .hero-path-link + * { margin-top: .5rem; }

/* FIX 4: Blog card images — consistent height, no crop */
.blog-card-v2-img {
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0a1628 !important;
}
.blog-card-v2-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: unset !important;
    transition: transform .4s !important;
}
.blog-card-img {
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    background: #0a1628 !important;
}
.blog-card-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: unset !important;
    transition: transform .6s ease !important;
}

/* Mobile newsletter */
@media (max-width: 576px) {
    .newsletter-form { flex-direction: column; border-radius: 8px; }
    .newsletter-input { border-radius: 8px 8px 0 0 !important; }
    .newsletter-btn { border-radius: 0 0 8px 8px !important; width: 100% !important; justify-content: center; display: flex; align-items: center; gap: .4rem; }
    .newsletter-btn::after { content: 'Subscribe'; font-size: .88rem; font-weight: 700; }
}
