/* ============================================
   Mobile Menu Drawer - Custom
   ============================================ */

.hc-mobile-drawer {
  position: fixed;
  top: 0;
  left: -85%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: left 0.3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  font-family: 'Inter', 'Be Vietnam Pro', sans-serif;
}

.hc-mobile-drawer.is-open {
  left: 0;
}

.hc-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.hc-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hc-mobile-drawer-header {
  background: #0d4d8c;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-mobile-drawer-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
}

.hc-mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-mobile-search {
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}

.hc-mobile-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.hc-mobile-search input:focus {
  border-color: #0d4d8c;
}

.hc-mobile-section {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.hc-mobile-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px 4px;
  margin: 0;
}

.hc-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hc-mobile-list li {
  border-bottom: 1px solid #f3f4f6;
}

.hc-mobile-list li:last-child { border-bottom: none; }

.hc-mobile-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease;
}

.hc-mobile-list a:hover,
.hc-mobile-list a:active {
  background: #fff7ed;
  color: #0d4d8c;
}

.hc-mobile-list a.has-children::after {
  content: '›';
  font-size: 22px;
  color: #9ca3af;
  margin-left: 8px;
}

.hc-mobile-list a.is-active {
  background: #ff7a00;
  color: #fff;
  font-weight: 600;
}

.hc-mobile-cta {
  padding: 16px 20px;
  background: #f8f9fa;
}

.hc-mobile-cta-btn {
  display: block;
  background: #ff7a00;
  color: #fff !important;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  transition: background 0.2s ease;
}

.hc-mobile-cta-btn:hover {
  background: #e56a00;
}

.hc-mobile-cta-btn.secondary {
  background: #fff;
  color: #0d4d8c !important;
  border: 2px solid #0d4d8c;
}

.hc-mobile-cta-btn.secondary:hover {
  background: #0d4d8c;
  color: #fff !important;
}

/* Submenu accordion */
.hc-mobile-submenu {
  background: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hc-mobile-submenu.is-open {
  max-height: 600px;
}

.hc-mobile-submenu a {
  padding: 12px 20px 12px 36px;
  font-size: 13px;
  color: #4b5563;
}

/* Body lock when drawer open */
body.hc-drawer-open {
  overflow: hidden;
}
