:root {
    --primary-blue: #0056b3;
    --primary-orange: #ff6b00;
    --text-dark: #333;
    --border-color: #eaeaea;
}
body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); background: #f9f9f9; }
a { text-decoration: none; color: inherit; }

/* =======================================================
   Top Contact Bar
   ======================================================= */
.top-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    padding: 8px 0;
    color: #555;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.alert-badge {
    background-color: #ff3b30; /* Red alert color */
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    margin-right: 8px;
    font-size: 11px;
    text-transform: uppercase;
}
.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-contact a {
    color: #555;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-contact a:hover {
    color: var(--primary-blue);
}
.top-request-btn {
    color: var(--primary-orange) !important;
    font-weight: bold;
}

/* Mobile Adjustments for Top Bar */
@media (max-width: 991px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-contact {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.site-header { background: #fff; border-bottom: 1px solid var(--border-color); position: relative; z-index: 1000; }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 80px; }



/* Desktop Navigation */
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 35px; height: 100%; }
.nav-item { display: flex; align-items: center; height: 80px; }
.nav-item > a { font-size: 15px; font-weight: 500; color: #444; transition: color 0.3s; display: flex; align-items: center; height: 100%; }
.nav-item > a:hover { color: var(--primary-blue); }
.active-link { color: var(--primary-blue) !important; border-bottom: 3px solid var(--primary-blue); }
.arrow { font-size: 12px; margin-left: 6px; color: #999; }

/* Dropdown Resets */
.has-dropdown, .has-mega-menu { position: relative; }
.dropdown-menu { position: absolute; top: 80px; left: 0; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); list-style: none; padding: 15px 0; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: 14px; }

/* Mega Menu Formatting */
.has-mega-menu { position: static; } 
.mega-menu-wrapper { position: absolute; top: 80px; left: 0; width: 100%; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.06); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border-top: 1px solid var(--border-color); }
.has-mega-menu:hover .mega-menu-wrapper, .has-mega-menu.open .mega-menu-wrapper { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-container { max-width: 1300px; margin: 0 auto; padding: 30px 20px; }

/* Tab Buttons */
.mega-tabs-nav { display: flex; gap: 15px; margin-bottom: 25px; overflow-x: auto; scrollbar-width: none; }
.mega-tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 20px; font-size: 14px; font-weight: 600; cursor: pointer; color: #444; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: all 0.2s ease; }
.tab-btn:hover { border-color: #cbd5e1; }
.tab-btn.active { border-color: transparent; box-shadow: 0 4px 15px rgba(0,0,0,0.08); color: #222; }

/* Content Grid Area */
.mega-content-area { display: flex; gap: 20px; }
.mega-links-wrapper { flex: 2; background: #f7f9fa; border-radius: 12px; padding: 30px 40px; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.tab-content h3 { margin-top: 0; margin-bottom: 25px; font-size: 18px; color: #222; }
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.links-grid ul { list-style: none; padding: 0; margin: 0; }
.links-grid li a { font-size: 15px; color: #555; display: block; margin-bottom: 12px; }
.links-grid li a:hover { color: var(--primary-blue); }

/* Promo Card */
.mega-promo-card { flex: 1; background: linear-gradient(135deg, #eef5ff 0%, #dceafc 100%); border-radius: 12px; padding: 35px 30px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.mega-promo-card h4 { font-size: 18px; color: var(--primary-blue); line-height: 1.4; margin-top: 0; margin-bottom: 20px; }
.btn-orange { background: var(--primary-orange); color: #fff; padding: 12px 24px; border-radius: 30px; font-weight: bold; font-size: 14px; transition: background 0.3s; }
.btn-orange:hover { background: #e05e00; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Mobile Responsiveness */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 25px; height: 3px; background: var(--text-dark); transition: 0.3s; }

@media (max-width: 1024px) { .links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }
    .main-nav { position: absolute; top: 80px; left: 0; width: 100%; background: #fff; border-top: 1px solid var(--border-color); display: none; box-shadow: 0 10px 20px rgba(0,0,0,0.1); max-height: calc(100vh - 80px); overflow-y: auto; }
    .main-nav.mobile-active { display: block; }
    .nav-list { flex-direction: column; height: auto; padding: 20px; gap: 0; }
    .nav-item { height: auto; border-bottom: 1px solid #f0f0f0; flex-direction: column; align-items: flex-start; }
    .nav-item > a { padding: 15px 0; width: 100%; display: flex; justify-content: space-between; }
    .active-link { border-bottom: none; }
    .dropdown-menu, .mega-menu-wrapper { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; border: none; width: 100%; padding: 0 0 15px 0; }
    .has-dropdown.open .dropdown-menu, .has-mega-menu.open .mega-menu-wrapper { display: block; }
    .mega-content-area { flex-direction: column; }
    .mega-links-wrapper { padding: 20px; }
    .links-grid { grid-template-columns: 1fr; } 
    .mega-promo-card { padding: 20px; }
}