/* ----------------------------------
   Mobile-Optimized Global Styles
---------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* ----------------------------------
   Logo Responsiveness
---------------------------------- */

.site-logo {
  max-width: 80px;
  height: auto;
}

@media (max-width: 767px) {
  .site-logo {
    max-width: 80px;
  }
}

/* ----------------------------------
   Mobile Header
---------------------------------- */

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mobile-nav-icon {
  font-size: 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------
   Mobile Sidebar Menu
---------------------------------- */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 40px 30px;
  overflow-y: auto;
  transition: all 0.3s ease;
  z-index: 9999;
}

.mobile-sidebar.mobile-menu-active {
  left: 0;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
}

/* ----------------------------------
   Navigation List
---------------------------------- */

.mobile-nav li {
  position: relative;
  margin-bottom: 10px;
}

.mobile-nav li a {
  font-size: 18px;
  padding: 10px 0;
  display: block;
  font-weight: 500;
  color: #000;
}

ul.mobile-nav-list {
  margin-top: 30px;
  max-height: 500px;
  overflow-y: auto;
}

/* ----------------------------------
   Dropdown Menus
---------------------------------- */

li.has-children .submenu-button {
  position: absolute;
  top: 10px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

ul.mobile-menu-sub {
  display: none;
  padding-left: 15px;
}

ul.mobile-menu-sub.sub-menu-active {
  display: block;
}

/* ----------------------------------
   Footer and Contact Info (Mobile)
---------------------------------- */

.contact-box,
.contact-infos {
  margin-top: 20px;
}

.contact-box a,
.contact-infos a {
  font-size: 16px;
  color: #000;
  display: block;
  margin-bottom: 10px;
}

.single-footer-items h3,
.contact-infos h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

/* ----------------------------------
   Social Icons
---------------------------------- */

.contact-infos ul li {
  display: inline-block;
  margin-right: 10px;
}

.contact-infos ul li a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  border-radius: 50%;
}
