/* Disable active menu orange color */
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
  color: inherit !important;
  background: transparent !important;
}

/* Disable hover background too (safe) */
.elementor-nav-menu a:hover {
  background: transparent !important;
}
/* Elementor header logo size */
.elementor-site-logo img,
.elementor-widget-theme-site-logo img {
  max-height: 70px;   /* 60–90 try kar sakte ho */
  width: auto;
}
/* ===== OVERLAY (dark premium background) ===== */
.pum-overlay {
  background: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(5px);
}

/* ===== POPUP CONTAINER (bigger + smooth card) ===== */
.pum-container {
  background: rgba(255, 255, 255, 0.96) !important;
  max-width: 600px !important;
  width: 92% !important;
  padding: 40px !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

/* ===== TITLE ===== */
.dl-title {
  font-size: 28px !important;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* ===== SUBTITLE ===== */
.dl-sub {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* ===== INPUT FIELDS ===== */
.pum-content input,
.pum-content select,
.pum-content textarea {
  width: 100% !important;
  border-radius: 12px !important;
  padding: 14px !important;
  border: 1px solid #e5e5e5 !important;
  background: #f9f9f9 !important;
  font-size: 14px;
}

/* ===== INPUT FOCUS EFFECT ===== */
.pum-content input:focus,
.pum-content select:focus {
  border-color: #ff6a00 !important;
  box-shadow: 0 0 0 2px rgba(255,106,0,0.15);
}

/* ===== FIELD SPACING ===== */
.pum-content .wpforms-field {
  margin-bottom: 15px !important;
}

/* ===== BUTTON ===== */
.wpforms-submit {
  width: 100% !important;
  background: linear-gradient(135deg, #ff6a00, #ff8c00) !important;
  color: #fff !important;
  border-radius: 14px !important;
  padding: 15px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: none !important;
  margin-top: 10px;
  transition: all 0.3s ease;
}

/* ===== BUTTON HOVER ===== */
.wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,106,0,0.35);
}

/* ===== CLOSE BUTTON FIX ===== */
.pum-close {
  background: #ff6a00 !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  text-align: center;
  line-height: 32px !important;
  font-size: 14px !important;
  top: -12px !important;
  right: -12px !important;
}

/* ===== NAME FIELD FIX (gap) ===== */
.wpforms-field-name .wpforms-field-row {
  gap: 10px;
}