/* ══════════════════════════════════════
   NS ENQUIRY FORM PANEL
══════════════════════════════════════ */

.ns-enq-form-panel {
  font-family: 'Outfit', sans-serif;
}

.ns-enq-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0873EA;
  font-weight: 600;
  margin-bottom: 8px;
}

.ns-enq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  line-height: 1.15;
}

.ns-enq-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}

.ns-enq-error {
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Field */
.ns-enq-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ns-enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.ns-enq-row .ns-enq-field {
  margin-bottom: 0;
}

.ns-enq-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.ns-enq-req {
  color: #0873EA;
}

.ns-enq-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  padding: 13px 15px !important;
  color: white !important;
  font-size: 13px !important;
  font-family: 'Outfit', sans-serif !important;
  outline: none !important;
  width: 100% !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
}

.ns-enq-input:focus {
  border-color: rgba(8,115,234,0.4) !important;
  background: rgba(8,115,234,0.04) !important;
}

.ns-enq-input::placeholder {
  color: rgba(255,255,255,0.2) !important;
}

.ns-enq-textarea {
  resize: vertical !important;
  min-height: 90px !important;
  line-height: 1.6 !important;
}

/* Select dropdown */
.ns-enq-select-wrap {
  position: relative;
}

.ns-enq-select-wrap select {
  cursor: pointer;
}

.ns-enq-select-wrap select option {
  background-color: #081230;
  color: white;
  padding: 10px;
}

.ns-enq-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.4);
  pointer-events: none;
}

/* Pills */
.ns-enq-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ns-enq-pill {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.22s;
  background: transparent;
  font-family: 'Outfit', sans-serif;
}

.ns-enq-pill:hover {
  border-color: rgba(8,115,234,0.4);
  color: white;
}

.ns-enq-pill.active {
  border-color: #0873EA;
  color: white;
  background: rgba(8,115,234,0.14);
}

/* Consent */
.ns-enq-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: 4px;
}

.ns-enq-consent-box {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ns-enq-consent-box.checked {
  background: #0873EA;
  border-color: #0873EA;
}

.ns-enq-consent-box svg {
  width: 9px;
  height: 9px;
  opacity: 0;
  transition: opacity 0.2s;
}

.ns-enq-consent-box.checked svg {
  opacity: 1;
}

.ns-enq-consent-text {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  font-weight: 300;
  cursor: pointer;
}

/* Submit */
.ns-enq-submit {
  width: 100% !important;
  padding: 15px !important;
  background: #0873EA !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: white !important;
  font-family: 'Outfit', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: background 0.3s ease !important;
  border-radius: 0 !important;
}

.ns-enq-submit:hover {
  background: #2d8fff !important;
}

.ns-enq-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ns-enq-submit svg {
  width: 15px !important;
  height: 15px !important;
  transition: transform 0.3s ease !important;
}

.ns-enq-submit:hover svg {
  transform: translateX(4px) !important;
}

/* ══════════════════════════════════════
   SUCCESS STATE
══════════════════════════════════════ */

.ns-enq-success{
    padding:32px;
    border:1px solid #0873EA4D;
    background:rgba(8,115,234,.04);
    text-align:center;
}

.ns-enq-success-icon{
    width:60px;
    height:60px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(13,184,122,.12);
    border:1px solid rgba(13,184,122,.35);
}

.ns-enq-success-icon svg{
    width:24px;
    height:24px;
    stroke:#0DB87A;
}

.ns-enq-success-title{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    font-weight:600;
    color:#fff;
    margin-bottom:14px;
}

.ns-enq-success-desc{
    max-width:420px;
    margin:0 auto 28px;
    font-size:13px;
    line-height:1.8;
    font-weight:300;
    color:rgba(255,255,255,.55);
}

.ns-enq-wa-now{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 28px;
    background:#0873EA;
    color:#fff !important;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    transition:background .25s ease;
}

.ns-enq-wa-now:hover{
    background:#2D8FFF;
    color:#fff !important;
}

.ns-enq-wa-now svg{
    width:15px;
    height:15px;
    stroke:#fff;
    fill:none;
}

/* ── KILL THEME PINK HOVER ON ALL ELEMENTS ── */
.ns-enq-form-panel button,
.ns-enq-form-panel input,
.ns-enq-form-panel select,
.ns-enq-form-panel textarea {
  -webkit-appearance: none !important;
  appearance: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Reset only pills and consent, NOT submit */
.ns-enq-pill:hover,
.ns-enq-pill:focus,
.ns-enq-pill:active {
  box-shadow: none !important;
  outline: none !important;
}

.ns-enq-consent-box:hover,
.ns-enq-consent-box:focus,
.ns-enq-consent-box:active {
  box-shadow: none !important;
  outline: none !important;
}

/* Pills — override pink with blue */
.ns-enq-pill {
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.45) !important;
  cursor: pointer !important;
  background: transparent !important;
  font-family: 'Outfit', sans-serif !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ns-enq-pill:hover {
  border-color: rgba(8,115,234,0.4) !important;
  color: white !important;
  background: transparent !important;
}

.ns-enq-pill.active {
  border-color: #0873EA !important;
  color: white !important;
  background: rgba(8,115,234,0.14) !important;
}

.ns-enq-pill:focus,
.ns-enq-pill:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Submit button — override pink */
.ns-enq-submit,
.ns-enq-submit:link,
.ns-enq-submit:visited {
  background: #0873EA !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.ns-enq-submit:hover,
.ns-enq-submit:focus,
.ns-enq-submit:active {
  background: #2d8fff !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

/* Prevent Elementor popup close from firing inside the form */
.ns-enq-form-panel,
.ns-enq-form-panel * {
  pointer-events: auto;
}

/* ── SUBMIT BUTTON — full theme fix ── */
.ns-enq-submit,
.ns-enq-submit:link,
.ns-enq-submit:visited,
.ns-enq-submit:focus,
.ns-enq-submit:active {
  background: #0873EA !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}

.ns-enq-submit:hover {
  background: #2d8fff !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.ns-enq-submit:disabled {
  background: rgba(8,115,234,0.4) !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
}

/* ── PILLS — match theme blue, kill pink ── */
.ns-enq-pill,
.ns-enq-pill:focus,
.ns-enq-pill:active {
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  color: rgba(255,255,255,0.45) !important;
  cursor: pointer !important;
  background: transparent !important;
  font-family: 'Outfit', sans-serif !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.22s, color 0.22s, background 0.22s !important;
}

.ns-enq-pill:hover {
  border-color: rgba(8,115,234,0.4) !important;
  color: white !important;
  background: rgba(8,115,234,0.06) !important;
  box-shadow: none !important;
  outline: none !important;
}

.ns-enq-pill.active,
.ns-enq-pill.active:hover,
.ns-enq-pill.active:focus {
  border-color: #0873EA !important;
  color: white !important;
  background: rgba(8,115,234,0.14) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── CONSENT BOX — kill pink ── */
.ns-enq-consent-box,
.ns-enq-consent-box:hover,
.ns-enq-consent-box:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 600px) {
  .ns-enq-row {
    grid-template-columns: 1fr !important;
  }

  .ns-enq-pills {
    gap: 6px !important;
  }

  .ns-enq-pill {
    font-size: 10px !important;
    padding: 7px 11px !important;
  }

  .ns-enq-submit {
    font-size: 10px !important;
    padding: 14px !important;
  }

  .ns-enq-success {
    padding: 20px 0 !important;
  }

  .ns-enq-success-title {
    font-size: 22px !important;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .ns-enq-row {
    grid-template-columns: 1fr;
  }
}