  :root {
    --honey-pure: #FFC400;
    --honey-amber: #F59E0B;
    --honey-dark: #8B5A2B;
    --bg-cream: #FFFDF5;
    --bg-wood: #F3E5DC;
    --text-main: #452710;
    --text-light: #7A5C45;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* Custom Honey Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(245, 158, 11, 0.05);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--honey-amber);
    border-radius: 10px;
    opacity: 0.5;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--honey-dark);
  }
  
  /* Scrollbar for Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--honey-amber) rgba(245, 158, 11, 0.05);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
  }

  body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  /* --- خلفية النافذة (الزهور والنحل) --- */
  .window-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
  }

  .flower {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flower-petal {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #ffecb3;
    border-radius: 50% 50% 10% 50%;
    transform-origin: center;
    margin-top: -12px;
  }

  .flower-center {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f44336;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }

  .bg-bee {
    position: absolute;
    width: 30px;
    height: 22px;
    z-index: 0;
    transition: all 4s ease-in-out;
  }

  .bee-fly {
    width: 45px;
    height: 35px;
    animation: beeMove 4s ease-in-out infinite;
    position: relative;
  }

  .bee-body {
    width: 100%;
    height: 100%;
    background: var(--honey-pure);
    border-radius: 15px;
    border: 2px solid #000;
    background-image: linear-gradient(90deg, #000 20%, transparent 20%, transparent 40%, #000 40%, #000 60%, transparent 60%, transparent 80%, #000 80%);
  }

  .wing {
    width: 25px;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: -10px;
    border-radius: 50%;
    border: 1px solid #ddd;
    animation: wings 0.1s linear infinite;
  }

  .wing.right {
    right: 0;
  }

  @keyframes wings {

    0%,
    100% {
      transform: scaleY(1);
    }

    50% {
      transform: scaleY(0.3);
    }
  }

  @keyframes beeMove {

    0%,
    100% {
      transform: translate(0, 0);
    }

    50% {
      transform: translate(10px, -20px);
    }
  }

  /* --- Navigation --- */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background: #e7d7bd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--bg-wood);
    backdrop-filter: blur(5px);
    height: 90px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
  }

  /* --- Language Switcher --- */
  .lang-switcher {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1001;
  }

  .lang-btn {
    background: var(--white);
    border: 1px solid var(--honey-amber);
    color: var(--honey-amber);
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
  }

  .lang-btn.active {
    background: var(--honey-amber);
    color: var(--bg-cream);
  }

  /* الكرة الأرضية بدون خلفية */
  .mobile-lang-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    line-height: 1;

    /* الإصلاح لصبغ الإيموجي بلون عسلي داكن */
    color: transparent;
    text-shadow: 0 0 0 var(--honey-amber);
  }

  /* --- Hero Section --- */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 10% 60px;
    position: relative;
  }

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  }

  .hero h1 span {
    color: var(--honey-amber);
  }

  .honey-scene {
    position: absolute;
    top: 150px;
    right: 10%;
    width: 100px;
    height: 100px;
    z-index: 10;
  }

  .countdown {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .time-unit {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    border: 1px solid var(--bg-wood);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  }

  .time-unit span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--honey-dark);
  }

  /* --- Services --- */
  .services {
    padding: 100px 8%;
    text-align: center;
    background-color: rgba(243, 229, 220, 0.7);
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid rgba(69, 39, 16, 0.05);
  }

  footer {
    padding: 40px;
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid var(--bg-wood);
    background: rgba(255, 253, 245, 0.8);
  }

  /* --- Responsive للهاتف --- */
  @media (max-width: 768px) {
    nav {
      justify-content: center;
      padding: 0 5%;
      height: 80px;
    }

    .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .logo img {
      height: 55px;
    }

    .lang-switcher {
      position: absolute;
      right: 5%;
    }

    /* تعديل الموقع في RTL للجوال */
    #main-html[dir="rtl"] .lang-switcher {
      left: 5%;
      right: auto;
    }

    .pc-btn {
      display: none !important;
    }

    .mobile-lang-icon {
      display: block;
    }

    /* تحسين شكل وموقع القائمة المنسدلة للجوال */
    .lang-dropdown {
      display: none;
      position: absolute;
      top: 45px;
      background: var(--white);
      border: 1px solid var(--honey-amber);
      border-radius: 12px;
      padding: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      width: 110px;
      z-index: 2000;
    }

    /* موازنة القائمة لتكون في منتصف الأيقونة */
    #main-html[dir="rtl"] .lang-dropdown {
      left: 0;
    }

    #main-html[dir="ltr"] .lang-dropdown {
      right: 0;
    }

    .lang-dropdown.active {
      display: block;
    }

    .lang-dropdown .lang-btn {
      display: block;
      width: 100%;
      margin-bottom: 8px;
      font-size: 0.9rem;
    }

    .lang-dropdown .lang-btn:last-child {
      margin-bottom: 0;
    }

    .hero h1 {
      font-size: 2.5rem;
    }

    .honey-scene {
      display: none;
    }

    .time-unit {
      min-width: 75px;
      padding: 10px;
    }

    .time-unit span {
      font-size: 1.8rem;
    }
  }

  /* --- Responsive للحاسوب --- */
  @media (min-width: 769px) {
    .lang-dropdown {
      display: none !important;
    }

    .mobile-lang-icon {
      display: none !important;
    }
  }

  /* --- DEFINITIVE PREMIUM LOGIN STYLES --- */
  .login-card {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem !important;
    border-radius: 45px !important;
    width: 100% !important;
    max-width: 480px !important;
    box-shadow: 
      0 10px 30px -10px rgba(245, 158, 11, 0.1),
      0 40px 100px -20px rgba(245, 158, 11, 0.25),
      inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.12) !important;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
  }

  .login-card:hover {
    transform: translateY(-5px);
  }

  .chahad-input-group {
    position: relative !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
  }

  /* Robust Icon Positioning */
  .login-logo {
    display: inline-block !important;
    max-width: 600px !important;
    height: auto !important;
    margin: 0 auto !important;
    vertical-align: middle;
    filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.2));
  }
  .login-logo-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    direction: ltr !important; /* Force LTR for the logo container */
    margin-bottom: 2rem !important;
  }
  .chahad-input-group i.pi {
    position: absolute !important;
    left: 1.4rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--honey-amber) !important;
    z-index: 50 !important;
    font-size: 1.3rem !important;
    pointer-events: none !important;
    opacity: 0.9;
  }

  /* Input Overrides */
  .chahad-input-group .p-inputtext,
  .chahad-input-group .p-password-input,
  .chahad-input-group input {
    width: 100% !important;
    padding: 1.25rem 3.8rem !important; /* Unified padding for icons on both sides */
    border-radius: 25px !important;
    border: 2px solid rgba(245, 158, 11, 0.15) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem !important;
    color: var(--text-main) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .chahad-input-group .p-inputtext:focus,
  .chahad-input-group .p-password input:focus {
    background: #ffffff !important;
    border-color: var(--honey-amber) !important;
    box-shadow: 0 10px 25px -10px rgba(245, 158, 11, 0.2) !important;
    transform: scale(1.01);
  }

  /* Force Eye Icon to the opposite side of the lock icon */
  .chahad-input-group .p-password .p-password-icon {
    right: 1.4rem !important; /* Default (End) */
    left: auto !important;
    color: var(--honey-dark) !important;
    z-index: 60 !important;
  }

  /* Lock icon is on the left by default (Start) */
  .chahad-input-group i.pi {
    left: 1.4rem !important;
    right: auto !important;
  }

  /* RTL Handling: Lock on the RIGHT (Start), Eye on the LEFT (End) */
  [dir="rtl"] .chahad-input-group i.pi {
    left: auto !important;
    right: 1.4rem !important;
  }

  [dir="rtl"] .chahad-input-group .p-password .p-password-icon {
    right: auto !important;
    left: 1.4rem !important;
  }

  /* Bulletproof Checkbox Styling */
  .chahad-checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }
  .chahad-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--honey-amber);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
  }
  .chahad-checkbox:checked {
    background: var(--honey-amber);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  }
  .chahad-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Beautiful Premium Button */
  .login-btn-wow {
    width: 100% !important;
    padding: 1.35rem !important;
    border-radius: 25px !important;
    border: none !important;
    background: linear-gradient(135deg, #FFC400 0%, #F59E0B 50%, #D97706 100%) !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
  }

  .login-btn-wow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
  }

  .login-btn-wow:hover::before {
    left: 100%;
  }

  .login-btn-wow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(245, 158, 11, 0.6) !important;
  }

  .login-btn-wow:active {
    transform: translateY(-2px) scale(1);
  }

  /* RTL Support - Only flip if dir="rtl" is present */
  [dir="rtl"] .chahad-input-group i.pi {
    left: auto !important;
    right: 1.4rem !important;
  }

  [dir="rtl"] .chahad-input-group .p-inputtext,
  [dir="rtl"] .chahad-input-group .p-password input {
    padding: 1.25rem 4.2rem 1.25rem 1.25rem !important;
    text-align: right;
  }

  /* --- PREMIUM BACKOFFICE SIDEBAR --- */
  #main-wrapper {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }





  [dir="rtl"] .content-body {
    margin-left: 0;
    margin-right: 280px;
  }

  #main-wrapper.menu-toggle .content-body {
    margin-left: 0;
    margin-right: 0;
  }

  /* Nav Header & Header Fixes */
  .nav-header {
    width: 280px !important;
    height: 90px !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1001 !important;
    background: #fff !important;
    border-bottom: 2px solid rgba(245, 158, 11, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
  }
  
  .brand-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  .brand-logo img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 55px !important; /* Ensure it stays proportional */
    object-fit: contain !important;
  }

  /* ========================================================
     BACKOFFICE LUXURY FLOATING ARCHITECTURE (V6) 
     The Pinnacle of Enterprise Web Design
     ======================================================== */

  .luxury-floating-header {
    position: fixed;
    top: 15px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .luxury-header-inner {
    height: 85px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(200%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.08), 
                inset 0 0 0 1px rgba(255,255,255,0.5);
  }

  /* Left: Brand */
  .luxury-brand-area {
    display: flex;
    align-items: center;
  }

  .luxury-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
  }

  /* Elegant Hamburger Toggle */
  .luxury-toggle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.02));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .luxury-toggle:hover {
    background: var(--honey-amber);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  }

  /* Hamburger Lines */
  .menu-icon {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--honey-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .luxury-toggle:hover .menu-icon span {
    background: #fff;
  }
  .luxury-toggle.active .menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .luxury-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .luxury-toggle.active .menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Title */
  .luxury-dashboard-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--honey-dark);
    margin: 0;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.5px;
  }

  /* User Profile Chip */
  .luxury-profile-chip {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 6px 15px 6px 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  [dir="rtl"] .luxury-profile-chip {
    padding: 6px 6px 6px 15px;
  }

  .luxury-profile-chip:hover {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
  }

  .chip-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--honey-dark), var(--honey-amber));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .chip-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    font-family: 'Cairo', sans-serif;
  }

  .chip-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--honey-amber);
    text-transform: uppercase;
  }

  .chip-action i {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  .chip-action i.open {
    transform: rotate(180deg);
    color: var(--honey-amber);
  }

  /* Luxury Dropdown */
  .luxury-profile-area { position: relative; }
  .luxury-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(245,158,11,0.1);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: top right;
  }
  
  /* The "Bridge" - This invisible element fills the 20px gap to prevent @mouseleave from firing prematurely */
  .luxury-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -30px; /* Bridge the 20px gap plus a bit more for safety */
    left: 0;
    right: 0;
    height: 40px;
    background: transparent;
  }

  [dir="rtl"] .luxury-dropdown-menu { right: auto; left: 0; transform-origin: top left; }

  .luxury-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .drop-header {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    padding: 0 10px 10px;
    border-bottom: 1px dashed rgba(245, 158, 11, 0.2);
    margin-bottom: 10px;
  }

  .drop-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Cairo', sans-serif;
  }

  .drop-item:hover {
    background: rgba(245, 158, 11, 0.08);
    color: var(--honey-amber);
    transform: translateX(-5px);
  }
  [dir="ltr"] .drop-item:hover { transform: translateX(5px); }

  .drop-icon {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--honey-amber);
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 1.1rem;
  }
  [dir="rtl"] .drop-icon { margin-right: 0; margin-left: 15px; }

  .drop-text {
    font-size: 0.95rem;
  }

  /* Body Content & Sidebar Adjustments to match Luxury Floating Header */
  .dlabnav {
    top: 115px !important; /* 15px top + 85px height + 15px gap */
    height: calc(100vh - 130px) !important; /* Proper bottom gap */
    border-radius: 20px !important;
    left: 20px !important;
    width: 280px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(25px) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04) !important;
    border: 1px solid rgba(245, 158, 11, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
  }
  [dir="rtl"] .dlabnav {
    left: auto !important; right: 20px !important;
  }
  #main-wrapper.menu-toggle .dlabnav {
    left: -320px !important;
  }
  [dir="rtl"] #main-wrapper.menu-toggle .dlabnav {
    left: auto !important; right: -320px !important;
  }

  .content-body {
    padding: 115px 20px 40px !important;
    margin-left: 320px !important; /* 280px width + 40px left/right gap */
    transition: all 0.4s ease !important;
    min-height: 100vh !important;
  }
  [dir="rtl"] .content-body {
    margin-left: 0 !important;
    margin-right: 320px !important;
  }
  #main-wrapper.menu-toggle .content-body {
    margin-left: 0 !important;
    padding-left: 20px !important;
  }
  /* ========================================================
     LUXURY COMPONENT SYSTEM (V6)
     ======================================================== */

  /* Luxury Card */
  .luxury-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .luxury-card-header {
    background: transparent;
    border-bottom: 2px solid rgba(245, 158, 11, 0.05);
    padding: 25px 30px;
  }

  /* Luxury Table Styling for PrimeVue DataTable */
  .luxury-table .p-datatable-thead > tr > th {
    background: rgba(245, 158, 11, 0.04) !important;
    color: var(--honey-dark) !important;
    font-weight: 800 !important;
    font-family: 'Cairo', sans-serif !important;
    border: none !important;
    padding: 18px 20px !important;
    font-size: 0.95rem !important;
  }

  .luxury-table .p-datatable-tbody > tr {
    background: transparent !important;
    transition: all 0.2s ease !important;
  }

  .luxury-table .p-datatable-tbody > tr > td {
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.03) !important;
    padding: 16px 20px !important;
    font-weight: 700 !important;
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
  }

  .luxury-table .p-datatable-tbody > tr:hover {
    background: rgba(245, 158, 11, 0.03) !important;
    transform: scale(0.998);
  }

  /* Status Badges */
  .luxury-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .badge-amber { background: rgba(245, 158, 11, 0.1); color: var(--honey-amber); }
  .badge-success { background: rgba(30, 200, 100, 0.1); color: #1ea064; }
  .badge-danger { background: rgba(255, 60, 60, 0.1); color: #ff3c3c; }

  /* Luxury Form Inputs */
  .luxury-input-group {
    margin-bottom: 25px;
  }

  .luxury-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--honey-dark);
    margin-bottom: 10px;
    display: block;
    font-family: 'Cairo', sans-serif;
  }

  .luxury-field {
    background: #fdfdfd !important;
    border: 1.5px solid rgba(245, 158, 11, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
  }

  .luxury-field:focus {
    background: #fff !important;
    border-color: var(--honey-amber) !important;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15) !important;
  }

  /* Premium Buttons */
  .btn-luxury {
    background: linear-gradient(135deg, var(--honey-pure), var(--honey-amber));
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    color: #fff;
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    color: #fff;
  }

  .btn-luxury-outline {
    background: transparent;
    border: 1.5px solid var(--honey-amber);
    border-radius: 12px;
    padding: 10px 22px;
    color: var(--honey-amber);
    font-weight: 800;
    transition: all 0.3s ease;
  }
  .btn-luxury-outline:hover {
    background: var(--honey-amber);
    color: #fff;
  }

  .btn-danger-luxury {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
  }
  .btn-danger-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    color: #fff;
  }

  /* =========================================
     MODERN GLASSMORPHISM & SOFT UI (V7) 
     Stripe / Apple / Linear Aesthetic 
  ========================================= */

  /* The Modern Floating Card */
  .modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.04), 0px 5px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .modern-card-header {
    padding: 24px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    background: transparent;
  }

  /* The Pill Search Bar */
  .modern-search-pill {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0 20px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
    width: 300px;
    height: 48px;
  }
  .modern-search-pill:focus-within {
    background: #fff;
    border-color: var(--honey-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
  }
  .modern-search-pill i { color: #adb5bd; transition: color 0.3s }
  .modern-search-pill:focus-within i { color: var(--honey-amber); }
  .modern-search-pill input {
    border: none;
    background: transparent;
    width: 100%;
    margin-left: 12px;
    outline: none;
    font-weight: 600;
    color: #212529;
  }

  /* Soft Circular Icon Buttons */
  .btn-modern-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #6c757d;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .btn-modern-icon:hover {
    background: #f1f3f5;
    color: #212529;
    transform: translateY(-2px);
  }
  .btn-modern-icon.text-primary:hover { background: rgba(13, 110, 253, 0.1); color: #0d6efd !important; }
  .btn-modern-icon.text-success:hover { background: rgba(25, 135, 84, 0.1); color: #198754 !important; }
  .btn-modern-icon.text-danger:hover { background: rgba(220, 53, 69, 0.1); color: #dc3545 !important; }

  /* Soft Avatars */
  .modern-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--honey-dark);
    background: rgba(245, 158, 11, 0.15);
  }

  /* Borderless Floating Table Overrides */
  .modern-table.p-datatable {
    padding: 0 20px 20px 20px;
  }
  .modern-table .p-datatable-thead > tr > th {
    background: transparent !important;
    border: none !important;
    color: #adb5bd !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    font-weight: 800;
    padding: 20px 15px !important;
  }
  .modern-table .p-datatable-tbody > tr {
    background: transparent !important;
    transition: all 0.2s;
  }
  .modern-table .p-datatable-tbody > tr > td {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.03) !important;
    padding: 16px 15px !important;
    vertical-align: middle;
  }
  .modern-table .p-datatable-tbody > tr:last-child > td { border-bottom: none !important; }
  .modern-table .p-datatable-tbody > tr:hover { background: rgba(0,0,0,0.01) !important; }

  /* Modern Badges */
  .modern-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-block;
  }
  .modern-badge-role {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
  }

  /* Modern Form Elements */
  .modern-input-group {
    margin-bottom: 24px;
  }
  .modern-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #868e96;
    margin-bottom: 8px;
    display: block;
  }
  .modern-input-field {
    width: 100%;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    transition: all 0.3s ease;
  }
  .modern-input-field:focus {
    background: #fff;
    border-color: var(--honey-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
    outline: none;
  }
  .modern-input-field:disabled {
    background: #f1f3f5;
    color: #adb5bd;
    cursor: not-allowed;
  }

  .btn-modern-primary {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.15);
  }
  .btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.25);
    color: #fff;
  }

  /* Search & Navigation Extras */
  .luxury-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 0 15px;
    border: 1.5px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    width: 280px;
  }
  .luxury-search-box:focus-within {
    border-color: var(--honey-amber);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.1);
  }
  .luxury-search-box i { color: var(--honey-amber); margin-right: 12px; }
  .luxury-search-box input {
    border: none;
    padding: 10px 0;
    width: 100%;
    outline: none;
    font-weight: 700;
    color: var(--honey-dark);
  }

  .luxury-avatar-small {
    width: 35px;
    height: 35px;
    background: var(--honey-amber);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
  }

  .btn-icon-hover {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  .btn-icon-hover:hover {
    background: rgba(245, 158, 11, 0.08);
    transform: scale(1.1);
  }

  .h-link {
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .h-link:hover {
    color: var(--honey-pure) !important;
  }

  .luxury-paginator.p-paginator {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }
  .luxury-paginator .p-paginator-page, 
  .luxury-paginator .p-paginator-next, 
  .luxury-paginator .p-paginator-last, 
  .luxury-paginator .p-paginator-first, 
  .luxury-paginator .p-paginator-prev {
    border-radius: 10px !important;
    font-weight: 800 !important;
    color: var(--honey-dark) !important;
    transition: all 0.2s ease !important;
  }
  .luxury-paginator .p-paginator-page.p-highlight {
    background: var(--honey-amber) !important;
    color: #fff !important;
  }

  /* Nav Header & Header Fixes */
  .nav-header {
    width: 280px !important;
    height: 90px !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1001 !important;
    background: #fff !important;
    border-bottom: 2px solid rgba(245, 158, 11, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
  }
  
  .brand-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  .brand-logo img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 55px !important; /* Ensure it stays proportional */
    object-fit: contain !important;
  }

  [dir="rtl"] .nav-header {
    left: auto !important;
    right: 0 !important;
  }

  .header {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03) !important;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1) !important;
  }

  /* Hamburger Toggle Styling */
  .nav-control {
    cursor: pointer;
    right: -50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.4s ease;
    z-index: 1002;
  }

  [dir="rtl"] .nav-control {
    right: auto;
    left: -50px;
  }

  .nav-control:hover {
    background: var(--honey-amber);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  }

  .hamburger .line {
    background: var(--honey-amber);
    height: 3px;
    width: 24px;
    display: block;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-control:hover .hamburger .line {
    background: #fff;
  }

  .hamburger.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Header Profile Styling */
  .header-profile .list-group-item {
    background: rgba(245, 158, 11, 0.08) !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
  }

  .header-profile .list-group-item:hover {
    background: rgba(245, 158, 11, 0.15) !important;
  }

  .header-profile strong {
    color: var(--honey-dark) !important;
    font-size: 0.95rem;
  }

  .dashboard_bar {
    font-size: 1.5rem !important;
    font-weight: 900 !important;
    color: var(--honey-dark) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Profile Dropdown Overrides */
  .dropdown-menu {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 10px !important;
    margin-top: 15px !important;
  }

  .dropdown-item {
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
    transition: all 0.2s ease !important;
  }

  .dropdown-item:hover {
    background: rgba(245, 158, 11, 0.1) !important;
    color: var(--honey-amber) !important;
    transform: translateX(5px);
  }

  .dropdown-item i {
    color: var(--honey-amber) !important;
    font-size: 1.1rem !important;
  }

  /* Modern Header Profile & Info Card */
  .header-info-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(245, 158, 11, 0.15) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.05) !important;
    transition: all 0.3s ease;
  }

  .header-info-card:hover {
    background: #fff !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1) !important;
    transform: translateY(-2px);
  }

  .header-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--honey-pure), var(--honey-amber));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 12px;
  }

  [dir="rtl"] .header-info-icon {
    margin-right: 0;
    margin-left: 12px;
  }

  .header-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .user-name {
    font-weight: 800 !important;
    color: var(--text-main) !important;
    font-size: 0.95rem;
  }

  .user-role {
    font-size: 0.75rem;
    color: var(--honey-dark);
    opacity: 0.8;
    font-weight: 600;
  }

  /* Action Toggle (Gear) */
  .action-toggle {
    width: 45px;
    height: 45px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--honey-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
  }

  .action-toggle:hover {
    background: var(--honey-amber);
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
  }

  /* Navbar Layout Fixes */
  .header-content {
    height: 100%;
    padding: 0 30px !important;
  }

  .navbar {
    padding: 0 !important;
    height: 100%;
  }

  .justify-content-between {
    width: 100%;
  }