/* ============ NPJ CONTACT PAGE STYLES ============ */

.npj-contact-hero {
  background: linear-gradient(135deg,#07182d 0%,#0b2d4d 55%,#07182d 100%);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.npj-contact-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,162,90,.12) 0%, transparent 70%);
}
.npj-contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.npj-contact-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 16px;
  background: linear-gradient(90deg,#c6a25a 0%,#f3dfb0 50%,#c6a25a 100%);
  color: #071a2d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.npj-contact-hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 46px;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 18px;
}
.npj-contact-hero p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.npj-contact-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.npj-contact-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.npj-contact-hero-actions .gold {
  background: #c6a25a;
  color: #071a2d;
}
.npj-contact-hero-actions .gold:hover { background: #fff; }
.npj-contact-hero-actions .outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.npj-contact-hero-actions .outline:hover { border-color: #fff; }

@media (max-width: 700px) {
  .npj-contact-hero h1 { font-size: 32px; }
}

/* TRUST STRIP */
.npj-contact-trust {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 24px;
}
.npj-contact-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.npj-contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #07182d;
}
.npj-contact-trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6a25a;
  flex-shrink: 0;
}

/* MAIN GRID */
.npj-contact-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) {
  .npj-contact-main { grid-template-columns: 1fr; }
}

/* FORM CARD */
.npj-contact-form-card {
  background: linear-gradient(135deg,#07182d 0%,#0b2d4d 60%,#07182d 100%);
  padding: 44px 40px;
  position: relative;
  border-left: 5px solid #c6a25a;
}
.npj-contact-form-card h2 {
  font-family: 'Merriweather', Georgia, serif;
  color: #fff;
  font-size: 28px;
  margin: 0 0 10px;
}
.npj-contact-form-card > p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin-bottom: 28px;
}
.npj-contact-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.npj-contact-form-card input,
.npj-contact-form-card textarea,
.npj-contact-form-card select {
  width: 100%;
  background: rgba(255,255,255,.06) !important;
  border: none !important;
  border-bottom: 2px solid rgba(198,162,90,.5) !important;
  padding: 12px 10px !important;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: 15px !important;
  outline: none !important;
}
.npj-contact-form-card select option { color: #07182d; }
.npj-contact-form-card textarea { min-height: 110px; resize: vertical; }
.npj-contact-form-card input::placeholder,
.npj-contact-form-card textarea::placeholder { color: rgba(255,255,255,.55) !important; }
.npj-contact-form-card input:focus,
.npj-contact-form-card textarea:focus,
.npj-contact-form-card select:focus { border-bottom-color: #fff !important; }

.npj-contact-form-card button {
  width: 100%;
  padding: 16px;
  border: none;
  background: #c6a25a;
  color: #071a2d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.npj-contact-form-card button:hover { background: #fff; }
.npj-contact-form-card button:disabled { opacity: .6; cursor: not-allowed; }

#npj-contact-success, #npj-contact-error {
  display: none;
  margin-top: 18px;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
}
#npj-contact-success { background: rgba(31,108,54,.22); color: #d9ffe7; }
#npj-contact-error { background: rgba(120,20,20,.22); color: #ffd2d2; }

.npj-contact-form-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* SIDE INFO */
.npj-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.npj-contact-info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.npj-contact-info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0b2d4d,#07182d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.npj-contact-info-card h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  color: #07182d;
  margin: 0 0 6px;
}
.npj-contact-info-card p, .npj-contact-info-card a {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  text-decoration: none;
}
.npj-contact-info-card a:hover { color: #c6a25a; }
.npj-contact-info-card a.phone-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: #07182d;
  margin-top: 2px;
}

.npj-contact-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 36px rgba(0,0,0,.08);
}
.npj-contact-map iframe { display: block; width: 100%; height: 280px; border: none; }

/* FAQ MINI SECTION */
.npj-contact-faq {
  background: #f8fafc;
  padding: 64px 24px;
}
.npj-contact-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.npj-contact-faq-head {
  text-align: center;
  margin-bottom: 36px;
}
.npj-contact-faq-head span {
  display: block;
  color: #c6a25a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.npj-contact-faq-head h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  color: #07182d;
}
.npj-contact-faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #c6a25a;
  margin-bottom: 12px;
}
.npj-contact-faq summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 50px 18px 20px;
  font-weight: 800;
  color: #07182d;
  font-size: 15px;
}
.npj-contact-faq summary::-webkit-details-marker { display: none; }
.npj-contact-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #c6a25a;
  font-size: 24px;
  font-weight: 900;
}
.npj-contact-faq details[open] summary::after { content: "\2013"; }
.npj-contact-faq-content { padding: 0 20px 20px; color: #4b5563; font-size: 14px; line-height: 1.7; }
