/* ===== Mobile Toolbar ===== */
.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #272727;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  z-index: 999;
  font-family: Inter, sans-serif;
  border: none;
}

 
.toolbar-btn {
  font-size: clamp(8px, 3vw, 15px);
  background: #ff7a00;
}

 
.toolbar-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

 
.icon {
  border-radius: 50%;
  width: clamp(20px, 8vw, 35px);
  height: clamp(20px, 8vw, 35px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(10px, 4vw, 15px);
}

 
.icon.whatsapp {
  background: #25d366;
}

.icon.mail {
  background: #ff7a00;
}

.icon.phone {
  background: #ff7a00;
}

 
.burger-btn {
  background: none;
  border: none;
  width: 52px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

 
.icon:hover,
.burger-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  transition: 0.25s ease;
}

 
@media (max-width: 768px) {
  .mobile-toolbar {
    display: flex;
  }
}
 
.mobile-menu {
  position: fixed;
  top: clamp(40px, 8vw, 100px);
  left: 0;
  width: 100%;

  height: 100%;
  background: rgb(255 255 255 / 74%);
  backdrop-filter: blur(4px);

  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 997;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
 
 
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 996;
}

 
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

 
.burger-btn {
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.burger-btn i {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger-btn i::before,
.burger-btn i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.burger-btn i::before {
  top: -7px;
}

.burger-btn i::after {
  top: 7px;
}

 
.burger-btn.active i {
  background: transparent;
}

.burger-btn.active i::before {
  transform: rotate(45deg);
  top: 0;
}

.burger-btn.active i::after {
  transform: rotate(-45deg);
  top: 0;
}

 
@media (max-width: 768px) {
  .mobile-toolbar {
    display: flex;
  }
}
