/* ===== SIDEBAR WRAPPER ===== */
#custom-sidebar {
  position: fixed;
  top: 0;
  right: -408px;
  width: 388px;
  height: 100%;
  background: #141414;
  color: #fff;

  padding: 55px 35px 40px;

  display: flex;
  flex-direction: column;

  transition: right 0.35s ease;
  z-index: 999;
}
#openSidebar {
    margin: 0;
}
#custom-sidebar.active {
  right: 0;
}

/* ===== HEADER ===== */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  max-height: 70px;
}

.sidebar-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  margin: 0;
  padding-right: 0;
}

/* ===== SOCIAL (CENTER) ===== */
.sidebar-social {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-social a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 22px;
  transition: opacity 0.2s ease;
}

.sidebar-social a:hover {
  opacity: 0.7;
}

.sidebar-social i {
  font-size: 18px;
}

/* ===== FOOTER ===== */
.sidebar-footer {
  margin-top: auto;
}

.sidebar-footer .divider {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.sidebar-footer .phone {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.sidebar-footer .email {
  font-size: 16px;
  opacity:1;
  margin: 0;
  margin-bottom: 8px;
}
.address{
  font-size: 16px;
  opacity: 1;
  margin: 0;
}

/* ===== OVERLAY ===== */
#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

#sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  #custom-sidebar {
    width: 100%;
    right: -100%;
  }
}
