:root {
  --accent: #FB8500;        
  --accent-transparent: rgba(251, 133, 0, 0.67); 
  --dark: #0F0B09;         
  --white: #ffffff;
  --primary: #FB8500;
  --secondary: #0F0B09;
  --text: #f5f5f5;
  --theme-color: #FB8500;
  --transition: all 0.3s ease;
}

/* Navbar Toggle Fix */
.navbar-toggle { margin-right: 0px!important; }

/* ------------------ Mobile Bottom Menu ------------------ */
.mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-transparent) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0px;
}

.mobile-menu a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17%;
  padding: 3px 0 !important;
  border-radius: 15px;
  color: var(--text);
  text-decoration: none;
  font-size: 10px;
  transition: var(--transition);
}

.mobile-menu a i {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-menu a span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

/* ------------------ Mobile Slide-Up Offcanvas ------------------ */
/* ------------------ Offcanvas Overlay ------------------ */
#offcanvasOverlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  display: none;
}

/* ------------------ Mobile Offcanvas ------------------ */
.mobile-offcanvas {
  position: fixed;
  top:0; left:-100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1050;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-offcanvas.open { left: 0; }

.offcanvas-header {
  background: var(--theme-color);
  color: #fff;
  padding: 20px;
  position: relative;
}

.offcanvas-header .close {
    position: absolute;   
    top: 30px;           
    right: 20px;         
    font-size: 40px;        
    font-weight: 700;
    color: #fff;
    opacity: 0.8;          
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.offcanvas-header .close:hover {
    opacity: 1;
    transform: scale(1.1);    
}

/* Offcanvas Navigation */
.offcanvas-body {
  padding: 15px;
}

.offcanvas-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas-body ul li {
  margin-bottom: 8px;
}


.offcanvas-body ul li a {
   background-color: var(--accent-transparent); 
  border-color: var(--accent);         
  color: #fff;       
   
}


.offcanvas-body ul li a:hover, a:focus {
    background-color: #fb8500!important;
    color: #ffffff;
 
}







