#mobile-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(135deg, #ff1949 0%, #ff4569 100%);
  z-index: 999999;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 5px 0 25px rgba(0,0,0,0.3);
}

#mobile-canvas-menu.in {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-content {
  padding: 70px 20px 30px 20px;
  color: white;
}

.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-close-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.mobile-logo {
  text-align: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
}

.mobile-logo img {
  max-width: 150px;
}

.mobile-nav {
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
}

.mobile-nav > a {
  display: flex;
  align-items: center;
  color: white;
  padding: 12px 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 5px;
}

.mobile-nav > a .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.mobile-nav > a:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-dropdown {
  margin-bottom: 5px;
}

.dropdown-header {
  display: flex;
  align-items: center;
  color: white;
  padding: 12px 15px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown-header:hover {
  background: rgba(255,255,255,0.15);
}

.dropdown-header .icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.dropdown-header .arrow {
  margin-left: auto;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  margin-top: 5px;
  padding: 0 10px;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  margin: 8px 0;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.2);
}

.dropdown-content a img {
  width: 50px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.dropdown-content a span {
  flex: 1;
  font-weight: 500;
}

.mobile-cert-btn {
  width: 100%;
  background: rgba(255,255,255,0.95);
  color: #ff1949;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-cert-btn:hover {
  background: white;
  transform: scale(1.02);
}

.mobile-contact {
  margin-bottom: 25px;
}

.mobile-social {
  margin-bottom: 25px;
}

.mobile-social h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

.mobile-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
}

.mobile-map {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.mobile-map a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) {
  .navbar-toggle {
    display: block !important;
  }
  .navbar-collapse {
    display: none !important;
  }
}

@media (min-width: 992px) {
  #mobile-canvas-menu {
    display: none;
  }
}

@media (max-width: 360px) {
  .dropdown-content a img {
    width: 45px;
    height: 35px;
  }
  .dropdown-content a {
    font-size: 12px;
    padding: 8px;
  }
}
