/* ===============================
   MOBILE FIRST FIX IMPROVEMENT
================================ */

@media (max-width: 991px) {
  .nav-links,
  .contact-btn {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .navbar {
    padding: 15px 20px;
  }

  .logo img {
    width: 140px;
    height: auto;
  }
}

/* ===============================
   MOBILE SIDEBAR STYLE (IMPROVED)
================================ */

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #0b1220, #0f172a);
  z-index: 9999;
  padding: 30px 25px;
  transition: 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(249, 190, 23, 0.2);
}

.mobile-sidebar.active {
  right: 0;
}

/* ===============================
   SIDEBAR TOP (LOGO + CLOSE)
================================ */

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sidebar-top img {
  width: 130px;
  object-fit: contain;
}

.close-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  background: #f9be17;
  color: #111;
}

/* ===============================
   MOBILE MENU LINKS (PIXELINE STYLE)
================================ */

.mobile-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fff;
  font-size: 16px;
  font-weight: 500;

  padding: 16px 18px;
  margin-bottom: 12px;

  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);

  transition: 0.3s;
  border-left: 3px solid transparent;
}

.mobile-links a:hover {
  background: rgba(249, 190, 23, 0.12);
  border-left: 3px solid #f9be17;
  transform: translateX(6px);
  color: #f9be17;
}

/* ===============================
   CONTACT BUTTON MOBILE
================================ */

.mobile-contact-btn {
  margin-top: 25px;
  padding: 15px;
  border-radius: 50px;
  text-align: center;

  background: linear-gradient(135deg, #f9be17, #c69200);
  color: #111;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(249, 190, 23, 0.25);
}

/* ===============================
   OVERLAY FIX
================================ */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   SMALL MOBILE FIX
================================ */

@media (max-width: 480px) {
  .mobile-sidebar {
    width: 280px;
  }

  .logo img {
    width: 110px;
  }
}
/* ===============================
   CONTACT INFO SECTION
================================ */

.mobile-contact-info {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  font-size: 14px;
  text-decoration: none;

  padding: 12px 14px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  transition: 0.3s;
}

.mobile-contact-info .info-item i {
  color: #f9be17;
  font-size: 16px;
  min-width: 18px;
}

.mobile-contact-info .info-item:hover {
  background: rgba(249, 190, 23, 0.12);
  transform: translateX(5px);
}

/* ===============================
   SOCIAL ICONS
================================ */

.mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.mobile-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  color: #fff;

  transition: 0.3s;
  font-size: 16px;
}

.mobile-social a:hover {
  background: #f9be17;
  color: #111;
  transform: translateY(-3px);
}
/* ===============================
   CONTACT INFO SECTION
================================ */

.mobile-contact-info {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #fff;
  font-size: 14px;
  text-decoration: none;

  padding: 12px 14px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  transition: 0.3s;
}

.mobile-contact-info .info-item i {
  color: #f9be17;
  font-size: 16px;
  min-width: 18px;
}

.mobile-contact-info .info-item:hover {
  background: rgba(249, 190, 23, 0.12);
  transform: translateX(5px);
}

/* ===============================
   SOCIAL ICONS
================================ */

.mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.mobile-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
  color: #fff;

  transition: 0.3s;
  font-size: 16px;
}

.mobile-social a:hover {
  background: #f9be17;
  color: #111;
  transform: translateY(-3px);
}
