/* ========================================================================= */
/* ARCH TRAVEL CORE - CENTRAL ENTERPRISE DESIGN SYSTEM & COMMON STYLESHEET   */
/* ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 70px;
    --top-header-height: 64px;
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --xaf-blue-start: #1E40AF;
    --xaf-blue-end: #1D4ED8;
    --bg-main: #F8FAFC;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border-color: #CBD5E1;
    --border-light: #E2E8F0;
    --font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------------------- */
/* 1. MASTER LAYOUT STYLING (Sidebar, Header, Main, Footer)                 */
/* ------------------------------------------------------------------------- */
#sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: #F8FAFC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.2);
}

#sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

#sidebar.collapsed .brand-title,
#sidebar.collapsed .nav-text,
#sidebar.collapsed .menu-category-title,
#sidebar.collapsed .user-info-text,
#sidebar.collapsed .badge-pill {
    display: none !important;
}

.brand-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: var(--top-header-height);
    box-sizing: border-box;
}

.menu-category-title {
    font-size: 10px;
    font-weight: 800;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 18px 16px 8px 16px;
    margin: 0;
}

.nav-link-custom {
    color: #94A3B8;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 3px 12px;
    position: relative;
}

.nav-link-custom:hover {
    color: #38BDF8;
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(4px);
}

.nav-link-custom.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    font-weight: 700;
}

.nav-link-custom.active::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #38BDF8;
    border-radius: 0 4px 4px 0;
}

.badge-pill {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.sidebar-user-card {
    margin: 16px 12px 14px 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#topHeader {
    height: var(--top-header-height);
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

#topHeader.expanded {
    left: var(--sidebar-collapsed-width);
}

#mainWrapper {
    margin-left: var(--sidebar-width);
    margin-top: var(--top-header-height);
    padding: 24px 28px 100px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: calc(100vh - var(--top-header-height));
}

#mainWrapper.expanded {
    margin-left: var(--sidebar-collapsed-width);
}

#mainFooter {
    margin-left: var(--sidebar-width);
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    padding: 14px 28px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mainFooter.expanded {
    margin-left: var(--sidebar-collapsed-width);
}

.search-box {
    background: #F1F5F9;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px 6px 36px;
    font-size: 12px;
    width: 260px;
    transition: all 0.2s ease;
}

.search-box:focus {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

/* ------------------------------------------------------------------------- */
/* 2. XAF FORM & COMPONENT STYLING                                           */
/* ------------------------------------------------------------------------- */
.xaf-blue-header {
    background: linear-gradient(135deg, var(--xaf-blue-start) 0%, var(--xaf-blue-end) 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.2px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.15);
}

.xaf-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    margin-bottom: 22px;
    transition: all 0.25s ease-in-out;
}

.xaf-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 14px 28px -5px rgba(15, 23, 42, 0.07);
}

.xaf-card-body {
    padding: 20px 22px;
}

.xaf-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.xaf-input {
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    color: var(--text-primary);
    width: 100%;
    transition: all 0.2s ease;
}

.xaf-input:focus {
    background: #FFFFFF;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: none;
}

.xaf-table {
    font-size: 12px;
    margin: 0;
}

.xaf-table th {
    background: #F1F5F9;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-bottom: 2px solid var(--border-light);
}

.xaf-table td {
    padding: 8px 10px;
    vertical-align: middle;
    border-color: #F1F5F9;
}

.btn-add-row {
    background: #F0F9FF;
    color: #0284C7;
    border: 1.5px dashed #38BDF8;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-row:hover {
    background: #0284C7;
    color: #FFFFFF;
    border-style: solid;
}

.btn-delete-row {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-delete-row:hover {
    background: #EF4444;
    color: #FFFFFF;
}

/* ------------------------------------------------------------------------- */
/* 3. DEVEXPRESS ASPXGRIDVIEW CONTROL STYLING                                */
/* ------------------------------------------------------------------------- */
.dx-grid-container {
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
}

.dx-grid-toolbar {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.dx-filter-input {
    width: 100%;
    font-size: 11px;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #FFFFFF;
}

/* ------------------------------------------------------------------------- */
/* 4. STICKY FLOATING SUMMARY CALCULATION BAR                                */
/* ------------------------------------------------------------------------- */
.sticky-summary-bar {
    position: sticky;
    bottom: 15px;
    z-index: 1050;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    color: #FFFFFF;
    border-radius: 14px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================================================= */
/* 5. eTRAVEL CRM SPECIFIC CUSTOM STYLES (MATCHING SCREENSHOT EXACTLY)       */
/* ========================================================================= */
#etravelMainContent {
    background-color: #EAEFF2;
    min-height: calc(100vh - 90px);
    padding-bottom: 40px;
}

.etravel-header {
    background: #FFFFFF;
    border-top: 3px solid #0284C7;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    z-index: 1040;
}

.etravel-brand {
    gap: 8px;
}

.etravel-logo-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0284C7 0%, #1D4ED8 100%);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.airplane-overlay {
    position: absolute;
    font-size: 10px;
    color: #FFFFFF;
    transform: rotate(-35deg);
    top: 3px;
    left: 4px;
}

.brand-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.0;
}

.brand-subtitle {
    font-size: 13px;
    font-weight: 800;
    color: #0284C7;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.2px;
}

.brand-title {
    font-size: 15px;
    font-weight: 900;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.5px;
}

.btn-etravel-home {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: #0284C7 !important;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-etravel-home:hover {
    background: #0284C7;
    color: #FFFFFF !important;
    border-color: #0284C7;
    transform: scale(1.05);
}

.etravel-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.etravel-nav-menu .nav-link {
    font-size: 12px;
    font-weight: 700;
    color: #0284C7 !important;
    text-transform: uppercase;
    padding: 6px 12px !important;
    letter-spacing: 0.3px;
    border-radius: 20px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}

.etravel-nav-menu .nav-link:hover,
.etravel-nav-menu .nav-link:focus,
.etravel-nav-menu .nav-link:active,
.etravel-nav-menu .nav-link:focus-visible,
.etravel-nav-menu .show > .nav-link {
    background-color: #F0F9FF !important;
    color: #0369A1 !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.etravel-nav-menu .dropdown-menu {
    font-size: 12px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 8px 0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.etravel-user-widget {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 4px 10px;
    border-radius: 20px;
    transition: background 0.2s ease;
}

.etravel-user-widget:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
}

.etravel-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.user-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: #10B981;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}

.user-name {
    font-size: 12px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: 0.3px;
}

.change-settings-link {
    font-size: 10px;
    color: #64748B;
    text-decoration: none;
    font-weight: 600;
}

.etravel-search-group {
    width: 280px;
    height: 36px;
}

.search-icon-addon {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-right: none;
    color: #64748B;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding-left: 12px;
    height: 36px;
    display: flex;
    align-items: center;
}

.etravel-search-input {
    font-size: 12px;
    height: 36px;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-left: none;
    border-right: none;
    color: #0F172A;
    font-weight: 600;
}

.etravel-search-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
}

.etravel-search-input:focus {
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: none;
    border-color: #0284C7;
}

.btn-search-trigger {
    background: #0284C7;
    border: 1px solid #0284C7;
    color: #FFFFFF !important;
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 800;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-search-trigger:hover {
    background: #0369A1;
    border-color: #0369A1;
}

.notification-widget {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-widget:hover {
    background: #F1F5F9;
    color: #0284C7;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: white;
    font-size: 9px;
    font-weight: 800;
    border-radius: 10px;
    padding: 1px 5px;
    border: 2px solid #FFFFFF;
}

/* Main Dashboard Sub-Header */
.dashboard-title-banner {
    background: linear-gradient(90deg, #1E293B 0%, #334155 100%);
    color: #FFFFFF;
    padding: 10px 24px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.status-pill-badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    color: #38BDF8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Modern KPI Grid Card System */
.modern-kpi-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.modern-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.1);
    border-color: #CBD5E1;
}

.kpi-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
}

.kpi-icon-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.kpi-icon-green {
    background: #F0FDF4;
    color: #16A34A;
}

.kpi-icon-purple {
    background: #F5F3FF;
    color: #7C3AED;
}

.kpi-icon-amber {
    background: #FFFBEB;
    color: #D97706;
}

.kpi-title {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 4px;
}

.kpi-description {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
    margin-bottom: 14px;
}

.btn-kpi-action {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.modern-kpi-card:hover .btn-kpi-action {
    gap: 8px;
}

/* Premium Hero Action Hub Cards (Umrah & Ticket Groups) */
.hero-hub-card {
    border-radius: 16px;
    padding: 28px 32px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.15);
}

.hero-hub-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.22);
}

.hero-umrah-gradient {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
}

.hero-ticket-gradient {
    background: linear-gradient(135deg, #0284C7 0%, #06B6D4 50%, #38BDF8 100%);
}

.hero-hub-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.hero-hub-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0;
    color: #FFFFFF;
}

.hero-hub-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    margin-bottom: 0;
}

.btn-hero-action {
    background: rgba(255, 255, 255, 0.95);
    color: #0F172A !important;
    font-weight: 800;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
}

.btn-hero-action:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #FFFFFF !important;
}

/* Modern Announcement Feed */
.announcement-card-modern {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.announcement-item {
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.announcement-item:last-child {
    border-bottom: none;
}

/* Load Dashboard Centered Controls */
.btn-load-dashboard {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF !important;
    border: none;
    border-radius: 30px;
    padding: 10px 28px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
    transition: all 0.25s ease;
}

.btn-load-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.45);
}

.divider-line {
    border-top: 2px dashed #CBD5E1;
}

/* ========================================================================= */
/* 6. GLOBAL LOADING SPINNER PRELOADER OVERLAY                               */
/* ========================================================================= */
#etravelPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.preloader-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 40px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}

.spinner-box {
    width: 4rem;
    height: 4rem;
}

.spinner-plane-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
}

/* ========================================================================= */
/* 7. UMRAH MEGA MENU CUSTOM STYLES (MATCHING SCREENSHOT)                   */
/* ========================================================================= */
.megamenu-dropdown {
    width: 840px;
    max-width: 90vw;
    padding: 24px;
    border-radius: 16px !important;
    background: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.16) !important;
    margin-top: 10px !important;
    left: 0 !important;
    animation: dropdownSlideIn 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.megamenu-header {
    font-size: 13px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 12px;
}

.megamenu-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    border-radius: 4px;
}

.megamenu-header-blue::before { background: #2563EB; }
.megamenu-header-green::before { background: #16A34A; }
.megamenu-header-purple::before { background: #7C3AED; }
.megamenu-header-amber::before { background: #D97706; }
.megamenu-header-red::before { background: #EF4444; }

.megamenu-link {
    font-size: 12.5px;
    color: #475569;
    padding: 5px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.2s ease;
}

.megamenu-link:hover {
    background: #F0F9FF;
    color: #0284C7;
    transform: translateX(4px);
}

.umrah-dashboard-btn-modern {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF !important;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
}

.umrah-dashboard-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    color: #FFFFFF !important;
}

/* ========================================================================= */
/* 8. CUSTOM ENTERPRISE TOM-SELECT & FORM-SELECT DROPDOWN STYLING           */
/* ========================================================================= */
.ts-control {
    background-color: #FFFFFF !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 8px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.ts-wrapper.focus .ts-control {
    border-color: #0284C7 !important;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12) !important;
    background-color: #FFFFFF !important;
}

.ts-dropdown {
    z-index: 999999 !important;
    border-radius: 10px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22) !important;
    padding: 6px !important;
    background: #FFFFFF !important;
    margin-top: 4px !important;
}

.live-search-dropdown {
    z-index: 999999 !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25) !important;
    border: 1px solid #CBD5E1 !important;
    border-radius: 12px !important;
}

.ts-dropdown .option {
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    transition: all 0.15s ease !important;
}

.ts-dropdown .option:hover,
.ts-dropdown .option.active {
    background-color: #F0F9FF !important;
    color: #0284C7 !important;
    font-weight: 700 !important;
}

.ts-dropdown .option.selected {
    background-color: #E0F2FE !important;
    color: #0369A1 !important;
    font-weight: 700 !important;
}

/* Custom Styled Form-Select Controls */
.form-select {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
    padding: 7px 32px 7px 12px;
    transition: all 0.2s ease;
}

.form-select:focus {
    border-color: #0284C7;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
    background-color: #FFFFFF;
}