/* ═══════════════════════════════════════════════════════════
   EasyGo Components v5.0 — Midnight Aurora
   ═══════════════════════════════════════════════════════════ */

/* ━━━ SKIP LINK ━━━ */
.eg-skip-link {
    position: absolute; top: -100px; left: 0; z-index: 100000;
    background: var(--eg-gold); color: var(--eg-midnight);
    padding: 12px 24px; font-weight: 800; transition: 0.3s;
}
.eg-skip-link:focus { top: 0; }

/* ━━━ TOP BAR ━━━ */
.eg-topbar {
    background: var(--eg-midnight);
    border-bottom: 1px solid rgba(229, 185, 78, 0.08);
    padding: 10px 0;
    position: relative; z-index: 1001;
}
.eg-topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
.eg-topbar-right, .eg-topbar-left { display: flex; gap: 24px; align-items: center; }
.eg-topbar-item {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--eg-gray-400); font-size: 12px; font-weight: 600;
    transition: color 0.3s;
}
.eg-topbar-item:hover { color: var(--eg-gold); }
.eg-topbar-item svg { color: var(--eg-gold); opacity: 0.7; }
.eg-topbar-live {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--eg-emerald); font-size: 11px; font-weight: 800;
}
.eg-live-dot {
    width: 6px; height: 6px; background: var(--eg-emerald);
    border-radius: 50%; position: relative;
}
.eg-live-dot::after {
    content: ''; position: absolute; inset: -3px;
    border: 1px solid var(--eg-emerald); border-radius: 50%;
    animation: eg-live-pulse 1.5s infinite;
}
@keyframes eg-live-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ━━━ HEADER ━━━ */
.eg-header {
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: sticky; top: 0; z-index: 1000;
    height: var(--header-h);
    display: flex; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s var(--ease-smooth);
}
.eg-header.scrolled {
    height: var(--header-h-scroll);
    background: rgba(6, 9, 15, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
body.admin-bar .eg-header { top: 32px; }
@media(max-width:782px) { body.admin-bar .eg-header { top: 46px; } }

.eg-header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* Logo */
.eg-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.eg-logo-icon { width: 44px; height: 44px; transition: transform 0.4s var(--ease-spring); }
.eg-logo:hover .eg-logo-icon { transform: rotate(-6deg) scale(1.08); }
.eg-logo-text { line-height: 1.1; }
.eg-logo-brand {
    display: block; font-family: var(--font-display);
    font-size: 22px; font-weight: 900; color: var(--eg-white);
    letter-spacing: -0.5px;
}
.eg-logo-sub {
    display: block; font-size: 9px; font-weight: 700;
    color: var(--eg-gold); letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation */
.eg-nav-list { display: flex; gap: 32px; align-items: center; }
.eg-nav-link {
    color: var(--eg-gray-300); font-weight: 700; font-size: 14px;
    padding: 28px 0; position: relative;
    display: inline-flex; align-items: center; gap: 5px;
    transition: color 0.3s;
}
.eg-nav-link::after {
    content: ''; position: absolute; bottom: 20px; right: 0;
    width: 0; height: 2.5px;
    background: linear-gradient(90deg, var(--eg-gold), var(--eg-gold-light));
    border-radius: 4px;
    transition: width 0.4s var(--ease-out-expo);
}
.eg-nav-link:hover, .eg-nav-link.active { color: var(--eg-white); }
.eg-nav-link:hover::after, .eg-nav-link.active::after { width: 100%; }
.eg-nav-arrow { color: var(--eg-gray-500); transition: transform 0.3s, color 0.3s; }
.eg-nav-link:hover .eg-nav-arrow { color: var(--eg-gold); transform: rotate(180deg); }

/* Mega Menu */
.eg-has-mega { position: relative; }
.eg-mega-menu {
    position: absolute; top: 100%; right: -80px;
    width: 700px; padding-top: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(12px);
    transition: all 0.4s var(--ease-out-expo);
    z-index: 100;
}
.eg-has-mega:hover .eg-mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.eg-mega-inner {
    background: var(--eg-white-pure);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    border: 1px solid var(--eg-gray-200);
    display: grid; grid-template-columns: 1fr 1fr 0.9fr;
    overflow: hidden;
}
.eg-mega-col { padding: 32px; }
.eg-mega-col h4 {
    color: var(--eg-navy); font-size: 14px; font-weight: 900;
    margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.eg-mega-icon { font-size: 18px; }
.eg-mega-col ul li { margin-bottom: 10px; }
.eg-mega-col ul li a {
    display: block; font-size: 13px; color: var(--eg-gray-600);
    font-weight: 600; padding: 8px 12px; border-radius: var(--radius-sm);
    transition: all 0.25s;
}
.eg-mega-col ul li a:hover {
    color: var(--eg-navy); background: var(--eg-gold-subtle);
    padding-right: 18px;
}
.eg-mega-cta {
    background: linear-gradient(135deg, var(--eg-navy) 0%, var(--eg-navy-light) 100%);
    padding: 32px; display: flex; align-items: center;
}
.eg-mega-cta-inner { text-align: center; }
.eg-mega-cta-badge {
    display: inline-block; background: var(--eg-gold-glow);
    color: var(--eg-gold); font-size: 10px; font-weight: 900;
    padding: 4px 14px; border-radius: var(--radius-full);
    border: 1px solid rgba(229,185,78,0.2);
    margin-bottom: 12px; letter-spacing: 1px;
}
.eg-mega-cta h5 { color: var(--eg-white); font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.eg-mega-cta p { color: var(--eg-gray-400); font-size: 12px; margin-bottom: 16px; }

/* Header Actions */
.eg-header-actions { display: flex; align-items: center; gap: 14px; }

.eg-quick-track-btn {
    width: 42px; height: 42px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    color: var(--eg-gray-300); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.eg-quick-track-btn:hover { background: var(--eg-gold); color: var(--eg-midnight); border-color: var(--eg-gold); }

.eg-quick-track-drop {
    position: absolute; top: calc(100% + 10px); left: 0;
    width: 340px; background: var(--eg-white-pure);
    border-radius: var(--radius-lg); padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--eg-gray-200);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.3s var(--ease-out-expo);
}
.eg-quick-track-drop.active { opacity: 1; visibility: visible; transform: translateY(0); }
.eg-qtrack-form { display: flex; gap: 8px; }
.eg-qtrack-form input {
    flex: 1; padding: 12px 16px;
    border: 2px solid var(--eg-gray-200); border-radius: var(--radius-md);
    font-size: 13px; font-family: var(--font-mono); transition: 0.3s;
}
.eg-qtrack-form input:focus { border-color: var(--eg-gold); }
.eg-qtrack-form button {
    background: var(--eg-navy); color: var(--eg-white);
    width: 44px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.eg-qtrack-form button:hover { background: var(--eg-gold); color: var(--eg-midnight); }

/* Mobile */
.eg-mobile-toggle { display: none; }

@media (max-width: 1024px) {
    .eg-nav { display: none; }
    .eg-header-actions .eg-btn { display: none; }
    .eg-topbar { display: none; }
    .eg-mobile-toggle {
        display: flex; background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        width: 42px; height: 42px; border-radius: var(--radius-md);
        align-items: center; justify-content: center;
    }
    .eg-hamburger { display: flex; flex-direction: column; gap: 5px; }
    .eg-hamburger span {
        display: block; width: 20px; height: 2px;
        background: var(--eg-white); border-radius: 2px;
        transition: all 0.3s;
    }
    .eg-mobile-toggle.active .eg-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .eg-mobile-toggle.active .eg-hamburger span:nth-child(2) { opacity: 0; }
    .eg-mobile-toggle.active .eg-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Mobile Menu */
.eg-mobile-overlay {
    position: fixed; inset: 0; background: rgba(6,9,15,0.8);
    backdrop-filter: blur(4px); z-index: 1998;
    opacity: 0; visibility: hidden; transition: 0.4s;
}
.eg-mobile-overlay.active { opacity: 1; visibility: visible; }

.eg-mobile-menu {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
    background: var(--eg-navy); z-index: 1999;
    transition: right 0.4s var(--ease-out-expo);
    padding: 24px; overflow-y: auto;
    display: flex; flex-direction: column;
}
.eg-mobile-menu.active { right: 0; }
.eg-mobile-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}
.eg-mobile-close {
    background: rgba(255,255,255,0.06); color: var(--eg-gray-400);
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.eg-mobile-close:hover { background: var(--eg-rose); color: var(--eg-white); }

.eg-mobile-nav { flex: 1; }
.eg-mobile-nav a {
    display: block; padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--eg-gray-300); font-weight: 700; font-size: 15px;
    transition: 0.3s;
}
.eg-mobile-nav a:hover { color: var(--eg-gold); padding-right: 18px; }

.eg-mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* ━━━ HERO SECTION ━━━ */
.eg-hero {
    position: relative; background: var(--eg-midnight);
    min-height: 90vh; display: flex; align-items: center;
    overflow: hidden;
}
.eg-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.eg-hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.8s ease;
}
.eg-hero-slide.active { opacity: 1; }
.eg-hero-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.08);
    animation: eg-ken-burns 22s infinite alternate ease-in-out;
}
@keyframes eg-ken-burns {
    0% { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1.22) translate(15px, 8px); }
}
.eg-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,9,15,0.95) 25%, rgba(6,9,15,0.5) 100%);
}

.eg-hero-content {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px;
    align-items: center;
}

.eg-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--eg-gold-glow);
    border: 1px solid rgba(229,185,78,0.2);
    padding: 10px 22px; border-radius: var(--radius-full);
    color: var(--eg-gold); font-size: 13px; font-weight: 800;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.eg-hero-badge-dot {
    width: 8px; height: 8px; background: var(--eg-gold);
    border-radius: 50%; position: relative;
}
.eg-hero-badge-dot::after {
    content: ''; position: absolute; inset: 0;
    background: var(--eg-gold); border-radius: 50%;
    animation: eg-live-pulse 1.5s infinite;
}

.eg-hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-hero); line-height: 1.08;
    font-weight: 900; color: var(--eg-white);
    margin-bottom: 24px; letter-spacing: -1px;
}
.eg-hero h1 .eg-gold-text {
    color: var(--eg-gold);
    text-shadow: 0 0 40px rgba(229,185,78,0.3);
}
.eg-hero-desc {
    font-size: var(--text-xl); line-height: 1.8;
    color: var(--eg-gray-400); margin-bottom: 40px;
    max-width: 600px;
}
.eg-hero-desc strong { color: var(--eg-white); }
.eg-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.eg-hero-stats {
    margin-top: 56px; display: flex; gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
}
.eg-hero-stat strong {
    display: block; font-family: var(--font-display);
    font-size: 2rem; color: var(--eg-gold);
    font-weight: 900; margin-bottom: 4px;
}
.eg-hero-stat small { color: var(--eg-gray-500); font-size: 12px; font-weight: 600; }

/* Hero Tracking Widget */
.eg-hero-widget {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-2xl);
    padding: 36px; color: var(--eg-white);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.eg-widget-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.eg-widget-head h3 { font-size: 18px; font-weight: 900; color: var(--eg-gold); margin: 0; }
.eg-widget-live {
    background: rgba(16,185,129,0.1); color: var(--eg-emerald);
    padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 10px; font-weight: 900;
    display: inline-flex; align-items: center; gap: 5px;
}
.eg-widget-live span { width: 5px; height: 5px; background: var(--eg-emerald); border-radius: 50%; }

.eg-widget-form { display: flex; gap: 8px; margin-top: 16px; }
.eg-widget-form input {
    flex: 1; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 14px 16px;
    color: var(--eg-white); font-family: var(--font-mono); font-size: 14px;
    transition: 0.3s;
}
.eg-widget-form input::placeholder { color: var(--eg-gray-500); }
.eg-widget-form input:focus { border-color: var(--eg-gold); background: rgba(0,0,0,0.3); }
.eg-widget-form button {
    background: var(--eg-gold); color: var(--eg-midnight);
    border-radius: var(--radius-md); padding: 0 24px;
    font-weight: 900; transition: 0.3s;
}
.eg-widget-form button:hover { transform: scale(1.05); background: var(--eg-gold-light); }

.eg-widget-stats { margin-top: 28px; display: grid; gap: 10px; }
.eg-widget-stat {
    display: flex; justify-content: space-between;
    font-size: 13px; color: var(--eg-gray-400);
}
.eg-widget-stat strong { color: var(--eg-white); font-weight: 700; }

/* ━━━ HERO RESPONSIVE ━━━ */
@media (max-width: 992px) {
    .eg-hero-content { grid-template-columns: 1fr; text-align: center; }
    .eg-hero-content > div:first-child { display: flex; flex-direction: column; align-items: center; }
    .eg-hero-btns { justify-content: center; }
    .eg-hero-stats { justify-content: center; gap: 24px; }
    .eg-hero-widget { max-width: 420px; margin: 0 auto; }
}

/* ━━━ TRACK BAR (Under Hero) ━━━ */
.eg-track-bar {
    position: relative; z-index: 50; margin-top: -50px;
    padding: 0 var(--space-lg);
}
.eg-track-bar-inner {
    max-width: 1100px; margin: 0 auto;
    background: var(--eg-white-pure);
    border-radius: var(--radius-2xl);
    padding: 32px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(229,185,78,0.15);
    display: flex; align-items: center; gap: 28px;
    flex-wrap: wrap;
}
.eg-track-bar-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--eg-navy), var(--eg-slate));
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    color: var(--eg-gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.eg-track-bar-text { flex: 1; min-width: 200px; }
.eg-track-bar-text h3 { font-size: 18px; font-weight: 900; color: var(--eg-navy); margin-bottom: 4px; }
.eg-track-bar-text p { color: var(--eg-gray-500); font-size: 13px; margin: 0; }
.eg-track-bar-form { flex: 1.6; min-width: 280px; display: flex; gap: 10px; }
.eg-track-bar-form input {
    flex: 1; padding: 16px 20px;
    border: 2px solid var(--eg-gray-200); border-radius: var(--radius-lg);
    font-family: var(--font-mono); font-size: 15px;
    background: var(--eg-gray-100); transition: 0.3s;
}
.eg-track-bar-form input:focus { border-color: var(--eg-gold); background: var(--eg-white-pure); }
.eg-track-bar-form button {
    background: var(--eg-gold); color: var(--eg-midnight);
    padding: 0 36px; border-radius: var(--radius-lg);
    font-weight: 900; font-size: 15px;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s; box-shadow: var(--shadow-gold);
}
.eg-track-bar-form button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(229,185,78,0.4); }

@media (max-width: 768px) {
    .eg-track-bar-inner { flex-direction: column; text-align: center; padding: 24px; }
    .eg-track-bar-form { width: 100%; flex-direction: column; }
}

/* ━━━ SERVICE CARDS ━━━ */
.eg-services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}
.eg-service-card {
    background: var(--eg-white-pure);
    border: 1px solid var(--eg-gray-200);
    border-radius: var(--radius-2xl);
    overflow: visible; position: relative;
    margin-top: 40px;
    transition: all 0.5s var(--ease-spring);
    box-shadow: var(--shadow-sm);
}
.eg-service-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    border-color: var(--eg-gold);
}
.eg-service-img {
    height: 220px; overflow: hidden;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.eg-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.eg-service-card:hover .eg-service-img img { transform: scale(1.1); }

.eg-service-icon-wrap {
    display: flex; justify-content: center;
    margin-top: -40px; position: relative; z-index: 10;
}
.eg-service-icon {
    width: 80px; height: 80px;
    background: var(--eg-gold);
    border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: center;
    color: var(--eg-white); font-size: 28px;
    box-shadow: 0 12px 30px rgba(229,185,78,0.4);
    border: 6px solid var(--eg-white-pure);
    transition: all 0.4s var(--ease-spring);
}
.eg-service-card:hover .eg-service-icon {
    transform: rotate(8deg) scale(1.1);
    background: var(--eg-navy);
}

.eg-service-body { padding: 0 32px 36px; text-align: center; }
.eg-service-body h3 {
    font-size: 20px; font-weight: 900; color: var(--eg-navy);
    margin: 16px 0 12px;
}
.eg-service-body p { color: var(--eg-gray-500); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.eg-service-link {
    color: var(--eg-gold); font-weight: 800; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px; transition: 0.3s;
}
.eg-service-link:hover { gap: 12px; color: var(--eg-navy); }

/* ━━━ WHY US SECTION ━━━ */
.eg-why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px; text-align: center;
}
.eg-why-item { padding: 20px; }
.eg-why-num {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 900; color: var(--eg-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(229,185,78,0.3);
}
.eg-why-item h4 { color: var(--eg-white); font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.eg-why-item p { color: var(--eg-gray-400); font-size: 14px; line-height: 1.7; }

/* ━━━ BLOG CARDS ━━━ */
.eg-blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}
.eg-blog-card {
    background: var(--eg-white-pure);
    border: 1px solid var(--eg-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden; transition: all 0.4s var(--ease-spring);
    display: flex; flex-direction: column;
}
.eg-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--eg-gold);
}
.eg-blog-card-img { height: 200px; overflow: hidden; }
.eg-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.eg-blog-card:hover img { transform: scale(1.08); }
.eg-blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.eg-blog-card-date { font-size: 12px; color: var(--eg-gray-400); font-weight: 700; margin-bottom: 10px; }
.eg-blog-card-title {
    font-size: 18px; font-weight: 900; color: var(--eg-navy);
    line-height: 1.5; margin-bottom: 16px; transition: 0.3s;
}
.eg-blog-card:hover .eg-blog-card-title { color: var(--eg-gold); }
.eg-blog-card-link {
    margin-top: auto; color: var(--eg-gold); font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 8px;
}

/* ━━━ CTA SECTION ━━━ */
.eg-cta-section {
    background: linear-gradient(135deg, var(--eg-navy) 0%, var(--eg-slate) 100%);
    padding: 80px 0;
    border-top: 3px solid var(--eg-gold);
    position: relative; overflow: hidden;
}
.eg-cta-section::before {
    content: ''; position: absolute; top: -100px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(229,185,78,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.eg-cta-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 32px;
}
.eg-cta-text { flex: 1; min-width: 300px; }
.eg-cta-text h2 { color: var(--eg-white); font-size: var(--text-3xl); font-weight: 900; margin-bottom: 12px; }
.eg-cta-text p { color: var(--eg-gray-400); font-size: var(--text-lg); }
.eg-cta-actions { display: flex; gap: 16px; }

@media (max-width: 768px) {
    .eg-cta-inner { flex-direction: column; text-align: center; }
    .eg-cta-actions { width: 100%; flex-direction: column; }
}

/* ━━━ FOOTER ━━━ */
.eg-footer {
    background: var(--eg-midnight);
    padding: 100px 0 40px; color: var(--eg-gray-400);
}
.eg-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px; margin-bottom: 64px;
}
.eg-footer-logo {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 900; color: var(--eg-white);
    margin-bottom: 20px;
}
.eg-footer-logo span { color: var(--eg-gold); }
.eg-footer-desc { line-height: 2; font-size: 14px; margin-bottom: 24px; text-align: justify; }

.eg-footer-col h4 {
    color: var(--eg-white); font-size: 16px; font-weight: 800;
    margin-bottom: 24px; position: relative; padding-right: 16px;
}
.eg-footer-col h4::before {
    content: ''; position: absolute; right: 0; top: 2px;
    width: 3px; height: 18px; background: var(--eg-gold);
    border-radius: 4px;
}
.eg-footer-col ul li { margin-bottom: 12px; }
.eg-footer-col ul li a {
    color: var(--eg-gray-400); font-size: 14px; font-weight: 600;
    transition: all 0.3s; display: inline-block;
}
.eg-footer-col ul li a:hover { color: var(--eg-gold); transform: translateX(-4px); }

.eg-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 32px; display: flex;
    justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.eg-footer-bottom p { font-size: 13px; color: var(--eg-gray-600); }
.eg-footer-bottom strong { color: var(--eg-gold); }

/* Footer Social */
.eg-social-links { display: flex; gap: 12px; }
.eg-social-link {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--eg-gray-400); transition: all 0.3s;
}
.eg-social-link:hover {
    background: var(--eg-gold); color: var(--eg-midnight);
    transform: translateY(-4px); border-color: var(--eg-gold);
}

@media (max-width: 1024px) { .eg-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
    .eg-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .eg-footer-col h4 { border-right: none; padding-right: 0; }
    .eg-footer-col h4::before { display: none; }
}

/* ━━━ BACK TO TOP ━━━ */
.eg-back-top {
    position: fixed; bottom: 28px; left: 28px;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--eg-gold); color: var(--eg-midnight);
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999; transition: 0.3s;
}
.eg-back-top:hover { transform: translateY(-4px) scale(1.1); }
.eg-back-top.visible { display: flex; }

/* ━━━ PARTICLES / AMBIENT BG ━━━ */
.eg-ambient-orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none; z-index: 0;
}
