:root {
  --nbp-navy: #0a1830;
  --nbp-navy-deep: #061424;
  --nbp-gold: #c9974a;
  --nbp-gold-light: #e0bd82;
  --nbp-cream: #f8f4ec;
  --nbp-gray: #6b7280;
  --nbp-border: #e7e2d8;
  --nbp-white: #ffffff;
  --nbp-radius: 10px;
  --nbp-radius-lg: 16px;
  --nbp-font-heading: 'Playfair Display', Georgia, serif;
  --nbp-font-body: 'Inter', Arial, sans-serif;
  --nbp-container: 1200px;
}

* { box-sizing: border-box; }
body { margin: 0; overflow-x: hidden; font-family: var(--nbp-font-body); color: var(--nbp-navy); background: var(--nbp-white); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--nbp-font-heading); font-weight: 700; line-height: 1.25; margin: 0 0 16px; color: var(--nbp-navy); }
p { line-height: 1.75; color: var(--nbp-gray); margin: 0 0 16px; }
a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.nbp-container { max-width: var(--nbp-container); margin: 0 auto; padding: 0 24px; }
.is-accent { color: var(--nbp-gold); font-style: italic; }

/* ---------- Buttons ---------- */
.nbp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 4px;
  font-family: var(--nbp-font-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.nbp-btn--gold { background: var(--nbp-gold); color: var(--nbp-navy-deep); }
.nbp-btn--gold:hover { background: var(--nbp-gold-light); }
.nbp-btn--navy { background: var(--nbp-navy); color: #fff; }
.nbp-btn--navy:hover { background: var(--nbp-navy-deep); }
.nbp-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.nbp-btn--outline-white:hover { background: rgba(255,255,255,.12); }
.nbp-btn--outline-navy { background: transparent; color: var(--nbp-navy); border-color: var(--nbp-navy); }
.nbp-btn--outline-navy:hover { background: var(--nbp-navy); color: #fff; }
.nbp-btn--block { width: 100%; }
.nbp-icon-chat::before, .nbp-icon-phone::before {
  content: ""; display: inline-block; width: 13px; height: 13px; background: currentColor; mask-image: url(../images/msg.png);
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* ---------- Header ---------- */
.nbp-header { border-bottom: 1px solid var(--nbp-border); padding: 18px 0; background: #fff; }
.nbp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nbp-header__logo img { height: 42px; }
.nbp-header__nav ul { display: flex; gap: 30px; }
.nbp-header__nav a { font-family: var(--nbp-font-body); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--nbp-navy); }
.nbp-header__nav a.is-active, .nbp-header__nav a:hover { color: var(--nbp-gold); }
.nbp-header__actions { display: flex; align-items: center; gap: 20px; }
.nbp-header__phone { font-weight: 600; color: var(--nbp-navy); display: flex; align-items: center; gap: 8px; font-size: 14px; }

/* ---------- Hamburger toggle ---------- */
.nbp-header__burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px; border: 1px solid var(--nbp-border); border-radius: 4px;
  background: #fff; cursor: pointer; padding: 0; flex-shrink: 0;
}
.nbp-header__burger span { display: block; width: 18px; height: 2px; background: var(--nbp-navy); transition: all .25s ease; }
.nbp-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nbp-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nbp-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
.nbp-navdrawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 280px; max-width: 82vw;
  background: var(--nbp-navy); z-index: 1000; padding: 28px 24px;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 28px; overflow-y: auto;
}
.nbp-navdrawer.is-open { transform: translateX(0); }
.nbp-navdrawer__top { display: flex; align-items: center; justify-content: space-between; }
.nbp-navdrawer__logo img { height: 30px; }
.nbp-navdrawer__close {
  width: 32px; height: 32px; border: none; background: transparent; color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.nbp-navdrawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.nbp-navdrawer nav a {
  display: block; padding: 12px 4px; font-weight: 600; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.08);
}
.nbp-navdrawer nav a.is-active, .nbp-navdrawer nav a:hover { color: var(--nbp-gold); }
.nbp-navdrawer__phone { color: #fff; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.nbp-navdrawer__phone .nbp-icon-phone::before { background: var(--nbp-gold); }
.nbp-navoverlay {
  position: fixed; inset: 0; background: rgba(6,15,31,.55); z-index: 999;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.nbp-navoverlay.is-open { opacity: 1; pointer-events: auto; }
body.nbp-noscroll { overflow: hidden; }

/* ---------- Hero ---------- */
.nbp-hero { background: var(--nbp-navy); background-image: radial-gradient(circle at 85% 15%, rgba(201,151,74,.18), transparent 45%), linear-gradient(135deg, var(--nbp-navy) 60%, var(--nbp-navy-deep) 100%); padding: 72px 0 100px; }
.nbp-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.nbp-hero__eyebrow { display: inline-block; color: var(--nbp-gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px; }
.nbp-hero__title { color: #fff; font-size: 50px; margin-bottom: 20px; }
.nbp-hero__desc { color: rgba(255,255,255,.82); max-width: 500px; }
.nbp-hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.nbp-hero__divider { width: 70px; height: 2px; background: linear-gradient(90deg, transparent, var(--nbp-gold), transparent); margin: 28px 0; }

.nbp-hero__form-card { background: #fff; border-radius: var(--nbp-radius-lg); padding: 34px; box-shadow: 0 25px 60px rgba(0,0,0,.35); border-top: 3px solid var(--nbp-gold);position: relative;z-index: 1; }
.nbp-hero__form-card::before{content: "";position: absolute;inset: 0;background: url(../images/form-vector.jpg) center / cover no-repeat;opacity: .3;z-index: -1;}
.nbp-hero__form-title { font-size: 23px; margin-bottom: 10px; }
.nbp-hero__form-sub { font-size: 14px; margin-bottom: 20px; }
.nbp-field { margin-bottom: 14px; }
.nbp-field input, .nbp-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--nbp-border); border-radius: 4px;
  font-family: var(--nbp-font-body); font-size: 14px; background: var(--nbp-cream); resize: vertical;
}
.nbp-field input:focus, .nbp-field textarea:focus { outline: none; border-color: var(--nbp-gold); background: #fff; }
.nbp-field--phone { display: flex; align-items: center; border: 1px solid var(--nbp-border); border-radius: 4px; background: var(--nbp-cream); padding: 0 12px; }
.nbp-field--phone input { border: none; background: transparent; padding-left: 8px; }
.hero-banner-rev { display: inline-flex;}
.hero-banner-rev img {height: 52px;}
/* ---------- Standards / Intro ---------- */
.nbp-standards { padding: 100px 0; }
.nbp-standards__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.nbp-standards__title { font-size: 34px; }
.nbp-standards__actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.nbp-standards__image { position: relative; }
.nbp-standards__image img { border-radius: var(--nbp-radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nbp-standards__badge {
  position: absolute; top: 20px; left: 20px; background: var(--nbp-navy); border-radius: 6px;
  padding: 10px 16px; box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.nbp-standards__badge img { border-radius: 0;height: 26px;aspect-ratio: 18 / 5;}

/* ---------- CTA Banner ---------- */
.nbp-cta-banner { background: var(--nbp-navy); padding: 60px 0; position: relative; }
.nbp-cta-banner__inner { display: flex; align-items: center; justify-content: center; gap: 32px; text-align: center; }
.nbp-cta-banner__body h2 { color: #fff; font-size: 27px; max-width: 720px; margin: 0 auto 14px; }
.nbp-cta-banner__body p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 22px; }
.nbp-cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.nbp-cta-banner__icon { font-size: 46px; flex-shrink: 0; opacity: .85;max-width: 200px; }
/* =========================================================
   Book Services Section — "Our Book Services"
   Depends on the shared theme tokens already defined in
   service-style.css / index.html (:root variables, .nbp-btn,
   .nbp-container, .is-accent, Playfair Display / Inter fonts).
========================================================= */

.nbp-services {
  padding: 90px 0 96px;
}

.nbp-services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.nbp-services__header h2 {
  font-size: 32px;
}

.nbp-services__header p {
  font-size: 15px;
  color: var(--nbp-gray);
  margin: 0;
}

.nbp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nbp-service-card {
  border: 1px solid var(--nbp-border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem 0;
}

.nbp-service-card:hover {
  border-color: var(--nbp-gold);
  box-shadow: 0 14px 30px rgba(10, 24, 48, 0.08);
  transform: translateY(-2px);
}

.nbp-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background: var(--nbp-gold);
  margin-bottom: 0;
}

.nbp-service-card__icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* renders the icon white on the gold badge */
}

.nbp-service-card h3 {
  font-size: 16px;
  font-family: var(--nbp-font-body);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 0;
}

.nbp-service-card p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 992px) {
  .nbp-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nbp-services { padding: 64px 0; }
  .nbp-services__header h2 { font-size: 26px; }
}

@media (max-width: 576px) {
  .nbp-services__grid { grid-template-columns: 1fr; }
}
/* ---------- Process ---------- */
.nbp-process { padding: 64px 0 64px; text-align: center; border-top: 6px solid #c9974a;}
.nbp-process__header { max-width: 640px; margin: 0 auto 40px; }
.nbp-eyebrow { display: inline-block; color: var(--nbp-gold); font-weight: 700; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 12px; }
.nbp-process__header h2 { font-size: 33px; }
.nbp-process__media { max-width: 480px; margin: 0 auto; border-radius: var(--nbp-radius); overflow: hidden; }
.nbp-process__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.nbp-process__caption { color: var(--nbp-gold); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin: 20px 0 56px; }
.nbp-process__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; text-align: left; margin-bottom: 48px; }
.nbp-step__label { color: var(--nbp-gold); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.nbp-step h3 { font-size: 19px; margin: 8px 0 10px; font-family: var(--nbp-font-heading); }
.nbp-step p { font-size: 14px; margin: 0; }
.nbp-process__stats { border-top: 1px solid var(--nbp-border); padding-top: 32px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.nbp-stat { text-align: left; }
.nbp-stat__label { display: block; color: var(--nbp-gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.nbp-stat__value { display: block; font-family: var(--nbp-font-heading); font-weight: 600; font-size: 16px; }

/* ---------- Books Gallery ---------- */
.nbp-books { background: var(--nbp-navy); padding: 76px 0; }
.nbp-books__header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.nbp-books__header h2 { color: #fff; font-size: 29px; }
.nbp-books__header p { color: rgba(255,255,255,.78); }
.nbp-books__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.nbp-book-card { margin: 0; border-radius: 6px; overflow: hidden; border: 1px solid rgba(201,151,74,.25); }
.nbp-book-card img { width: 100%; aspect-ratio: 3/4.3; object-fit: cover; transition: transform .3s ease; }
.nbp-book-card:hover img { transform: scale(1.05); }
/* =========================================================
   Genres Section — "We Publish All Genres"
   Depends on the shared theme tokens already defined in
   service-style.css / index.html (:root variables, .nbp-btn,
   .nbp-container, .is-accent, Playfair Display / Inter fonts).
   If dropping this section into a page that doesn't already
   include those, copy the :root block from the main stylesheet
   first.
========================================================= */

.nbp-genres {
  position: relative;
  padding: 80px 0 90px;
  text-align: center;
}

.nbp-genres__header {
  max-width: 760px;
  margin: 0 auto 44px;
}

.nbp-genres__header h2 {
  font-size: 32px;
}

.nbp-genres__header p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--nbp-gray);
  margin: 0;
}

/* Four highlight colors for the paragraph phrases, matching the reference design */
.nbp-genres__header p .hl-1 { color: #d64545; font-weight: 600; } /* romance — red */
.nbp-genres__header p .hl-2 { color: #7a4ec9; font-weight: 600; } /* crime drama — purple */
.nbp-genres__header p .hl-3 { color: #2f9e5c; font-weight: 600; } /* horror — green */
.nbp-genres__header p .hl-4 { color: #2f6fd6; font-weight: 600; } /* memoirs/autobiographies — blue */

/* Single centered collage image */
.nbp-genres__image {
  max-width: 640px;
  margin: 0 auto 44px;
  border-radius: 10px;
  overflow: hidden;
}

.nbp-genres__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .nbp-genres { padding: 60px 0 64px; }
  .nbp-genres__header h2 { font-size: 26px; }
  .nbp-genres__image { max-width: 460px; border-radius: 8px; }
}

@media (max-width: 480px) {
  .nbp-genres__header h2 { font-size: 22px; }
  .nbp-genres__image { max-width: 320px; }
}
/* ---------- FAQ ---------- */
.nbp-faq { padding: 100px 0; background: var(--nbp-cream); position: relative;z-index: 1;}
.nbp-faq::after{content: "";position: absolute;inset: 0;background: url(../images/faq-bg.png) center / cover no-repeat;z-index: -1;opacity: 0.1;transition: background 0.3s, border-radius 0.3s, opacity 0.3s;}
.nbp-faq__header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.nbp-faq__header h2 { font-size: 31px; }
.nbp-faq__list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.nbp-faq-item { border: 1px solid var(--nbp-border); border-radius: 6px; overflow: hidden; background: #fff; }
.nbp-faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: #fff; border: none; text-align: left; font-family: var(--nbp-font-body); font-weight: 600; font-size: 15px; color: var(--nbp-navy); cursor: pointer; }
.nbp-faq-item__icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.nbp-faq-item__icon::before, .nbp-faq-item__icon::after { content: ""; position: absolute; background: var(--nbp-navy); transition: transform .2s ease; }
.nbp-faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.nbp-faq-item__icon::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.nbp-faq-item.is-open .nbp-faq-item__q { background: var(--nbp-navy); color: #fff; }
.nbp-faq-item.is-open .nbp-faq-item__icon::before, .nbp-faq-item.is-open .nbp-faq-item__icon::after { background: var(--nbp-gold); }
.nbp-faq-item.is-open .nbp-faq-item__icon::after { transform: translateX(-50%) scaleY(0); }
.nbp-faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.nbp-faq-item.is-open .nbp-faq-item__a { max-height: 400px; }
.nbp-faq-item__a p { margin: 0; padding: 18px 24px 22px; font-size: 14px; }

/* ---------- Bottom CTA ---------- */
.nbp-bottom-cta { background: var(--nbp-navy); padding: 42px 0; border-top: 2px solid var(--nbp-gold); }
.nbp-bottom-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.nbp-bottom-cta__inner h2 { color: #fff; font-size: 26px; margin: 0; max-width: 480px; }

/* ---------- Footer ---------- */
.nbp-footer { padding: 64px 0 0; background: var(--nbp-navy-deep); color: rgba(255,255,255,.7); }
.nbp-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.nbp-footer__logo { height: 40px; margin-bottom: 16px; }
.nbp-footer__col h3 { font-family: var(--nbp-font-heading); font-size: 17px; margin-bottom: 18px; color: #fff; }
.nbp-footer__col p { color: rgba(255,255,255,.65); }
.nbp-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.nbp-footer__col ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.65); }
.nbp-footer__col ul a { color: rgba(255,255,255,.65); font-size: 14px; }
.nbp-footer__col ul a:hover { color: var(--nbp-gold); }
.nbp-footer__bottom { background: var(--nbp-navy); text-align: center; padding: 16px 0 0; font-size: 13px; color: rgba(255,255,255,.6); }
.nbp-footer__disclaimer { opacity: .8; font-size: 12px; margin-top: 4px;    margin-bottom: 0; background-color: var(--nbp-navy-deep); padding: 4px 0; }

/* ---------- Form ---------- */
.wpcf7 input,.wpcf7 textarea {
    width: 100%;
    height: 38px;
    padding: 10px;
    border-radius: 10px;
    outline: none;
    border: 0;
    margin-bottom: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.wpcf7 textarea {
    height: 100%;
    resize: vertical;
}

.wpcf7 br {
    display: none;
}

.wpcf7 p {
    all: unset;
}
/* =========================================================
   Book Success CTA Section
   Depends on the shared theme tokens already defined in
   service-style.css / index.html (:root variables, .nbp-field,
   .nbp-container, .is-accent, Playfair Display / Inter fonts).
========================================================= */

.nbp-book-success {
  padding: 96px 0;
}

.nbp-book-success__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.nbp-book-success__title {
  font-size: 34px;
}

.nbp-book-success__desc {
  font-size: 15px;
  color: var(--nbp-gray);
}

.nbp-book-success__form-card {
  background: #fff;
  border-radius: var(--nbp-radius-lg);
  padding: 34px;
  box-shadow: 0 25px 60px rgba(10, 24, 48, 0.14);
  border-top: 3px solid var(--nbp-gold);
}

.nbp-book-success__form-title {
  font-size: 23px;
  margin-bottom: 10px;
}

.nbp-book-success__form-sub {
  font-size: 14px;
  color: var(--nbp-gray);
  margin-bottom: 20px;
}

/* CF7's native output reuses the same field styling as the hero form */
.nbp-book-success__form-card input:focus,
.nbp-book-success__form-card textarea:focus {
  outline: none;
  border-color: var(--nbp-gold);
  background: #fff;
}

@media (max-width: 992px) {
  .nbp-book-success__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nbp-book-success { padding: 64px 0; }
  .nbp-book-success__title { font-size: 27px; }
}

@media (max-width: 576px) {
  .nbp-book-success__form-card { padding: 22px; }
  .nbp-book-success__title { font-size: 24px; }
}


/* =========================================================
   Inner Page Banner + Vision & Mission
   Depends on the shared theme tokens already defined in
   service-style.css / index.html (:root variables, .nbp-btn,
   .nbp-container, .is-accent, Playfair Display / Inter fonts).
========================================================= */

/* ---------- Inner Banner ---------- */
.nbp-inner-banner {
  position: relative;
  background: var(--nbp-navy);
  background-image: radial-gradient(circle at 85% 15%, rgba(201,151,74,.18), transparent 45%), linear-gradient(135deg, var(--nbp-navy) 60%, var(--nbp-navy-deep) 100%);
  padding: 64px 0 80px;
  z-index: 1;
}
.nbp-inner-banner::before {
    content:"";
    position: absolute;
    inset: 0;
    background: url(../images/inner-bg.jpg) center / cover no-repeat;
    z-index: -1;
    opacity: 0.09;
}
.nbp-inner-banner__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}

/* No-form layout: single centered column, full width */
.nbp-inner-banner--no-form .nbp-inner-banner__inner {
  grid-template-columns: 1fr;
  text-align: center;
}
.nbp-inner-banner--no-form .nbp-inner-banner__content {
  max-width: 700px;
  margin: 0 auto;
}
.nbp-inner-banner--no-form .nbp-inner-banner__actions {
  justify-content: center;
}

.nbp-inner-banner__title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 16px;
}

.nbp-inner-banner__desc {
  color: rgba(255,255,255,.82);
  max-width: 520px;
}

.nbp-inner-banner__actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.nbp-inner-banner__form-card {
  background: #fff;
  border-radius: var(--nbp-radius-lg);
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
  border-top: 3px solid var(--nbp-gold);
}

.nbp-inner-banner__form-title { font-size: 21px; margin-bottom: 10px; }
.nbp-inner-banner__form-sub { font-size: 14px; margin-bottom: 18px; color: var(--nbp-gray); }


.nbp-inner-banner__form-card input:focus,
.nbp-inner-banner__form-card textarea:focus {
  outline: none;
  border-color: var(--nbp-gold);
  background: #fff;
}

@media (max-width: 992px) {
  .nbp-inner-banner__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nbp-inner-banner { padding: 48px 0 60px; }
  .nbp-inner-banner__title { font-size: 30px; }
}
@media (max-width: 576px) {
  .nbp-inner-banner__actions { flex-direction: column; align-items: stretch; }
  .nbp-inner-banner__actions .nbp-btn { width: 100%; }
  .nbp-inner-banner__form-card { padding: 20px; }
  .nbp-inner-banner__title { font-size: 25px; }
}

/* ---------- Vision & Mission ---------- */
.nbp-vision-mission {
  padding: 72px 0;
}

.nbp-vision-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nbp-vm-card {
  border: 1px solid var(--nbp-border);
  border-radius: 8px;
  padding: 30px;
}

.nbp-vm-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.nbp-vm-card__icon img {
  width: 28px;
  height: 28px;
}

.nbp-vm-card h2 {
  font-size: 20px;
  font-family: var(--nbp-font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 12px;
}

.nbp-vm-card p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .nbp-vision-mission { padding: 56px 0; }
  .nbp-vision-mission__grid { grid-template-columns: 1fr; }
}


