  /* ------------------ Mobile Menu ------------------ */
  .mobile-menu {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--accent-gradient);
    backdrop-filter: blur(10px); 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2); 
    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: 23%;
    padding: 3px 0 !important;
    border-radius: 15px;
    position: relative;
    color: var(--background);
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .mobile-menu a i {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--background);
    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(--background);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
    transition: color 0.3s ease;
  }
  .mobile-menu {
    animation: slideUp 0.5s ease-out forwards;
  }
  @keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
  }


/* ------------------ Offcanvas Panel ------------------ */
.offcanvas {
  background: var(--white, #ffffff);
  width: 100%!important;
  z-index: 99999;
  transition: transform 0.3s ease-in-out;
  border-left: 1px solid #ddd;
}

.offcanvas-header {
  background: var(--accent-gradient, linear-gradient(135deg, #ff6f61, #ff8e53));
  padding: 1.5rem;
  color: var(--white, #ffffff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.offcanvas-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-close-custom {
  color: #fff;
  font-size: 1.5rem;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.btn-close-custom:hover {
  opacity: 1;
}

.offcanvas-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--background);
}

/* ------------------ Nav List ------------------ */
.offcanvas-nav .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link:focus {
  background: var(--theme-color);
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.offcanvas-nav .nav-link i {
  font-size: 1.4rem;
  color: var(--accent);
}

/* ------------------ Footer ------------------ */
.offcanvas-footer {
  background: #f1f3f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid #ccc;
}

.offcanvas-footer.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item p {
  margin: 0;
  font-size: 16px;
  color: var(--gray, #666);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.contact-item h5 a {
  color: #a96f3e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item h5 a:hover {
  color: var(--theme-color);
}

/* ------------------ Social Links ------------------ */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 24px;
  color: var(--text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--theme-color);
  transform: scale(1.1);
}
