/* Udaan Help — Reliance-style mega menu header */
.udaan-header-wrap { font-family: 'Poppins', sans-serif; }

.udaan-header-bar {
  background: #f7f6f2;
  border-bottom: 1px solid #e5e5e0;
}

.udaan-nav-link,
.udaan-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  height: 70px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.udaan-nav-link:hover,
.udaan-nav-trigger:hover,
.udaan-nav-trigger.is-active,
.udaan-nav-item.is-open .udaan-nav-trigger {
  color: #ea580c;
  border-bottom-color: #ea580c;
}

.udaan-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  vertical-align: middle;
}

.udaan-nav-item.is-open .udaan-chevron {
  transform: rotate(180deg);
}

.udaan-mobile-toggle {
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1e3a8a;
  display: none !important;
}

@media (max-width: 1023px) {
  .udaan-mobile-toggle {
    display: inline-flex !important;
  }
}
.udaan-mobile-toggle::before {
  content: '';
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.udaan-btn-donate {
  border: 1px solid #1f2937;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1f2937;
  transition: background 0.2s, color 0.2s;
}

.udaan-btn-donate:hover {
  background: #ea580c;
  border-color: #ea580c;
  color: #fff;
}

/* Full-screen width mega panel */
.udaan-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
}

.udaan-mega-menu.is-open {
  display: block;
}

.udaan-mega-menu[hidden] {
  display: none !important;
}

.udaan-mega-panel-wrap {
  background: #f7f6f2;
  border-bottom: 1px solid #e5e5e0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  max-height: min(75vh, 520px);
  overflow-y: auto;
}

.udaan-mega-panel {
  display: none;
}

.udaan-mega-panel.is-active {
  display: block;
}

.udaan-mega-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.udaan-mega-panel .mega-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: 22rem;
  margin-bottom: 2rem;
}

.udaan-know-more::after {
  content: ' \2192';
}

.udaan-know-more {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #111827;
  padding-bottom: 2px;
}

.udaan-know-more:hover {
  color: #ea580c;
  border-color: #ea580c;
}

.udaan-mega-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.udaan-mega-link-list li {
  border-bottom: 1px solid #e5e5e0;
}

.udaan-mega-link-list a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}

.udaan-mega-link-list a:hover {
  color: #ea580c;
  padding-left: 0.35rem;
}

.udaan-mega-feature img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.udaan-mega-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1rem;
}

.udaan-mega-feature p {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.35rem;
  line-height: 1.5;
}

#header-spacer {
  height: 70px;
  flex-shrink: 0;
}

/* Mobile menu */
.udaan-mobile-drawer {
  display: none;
  background: #f7f6f2;
  border-bottom: 1px solid #e5e5e0;
  padding: 1rem 1.5rem 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.udaan-mobile-drawer.is-open {
  display: block;
}

.udaan-mobile-drawer a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: #374151;
  border-bottom: 1px solid #e5e5e0;
}

.udaan-mobile-drawer .mobile-section-title {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #ea580c;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 1023px) {
  .udaan-mega-menu { display: none !important; }
}