/* ==========================================================================
   NCR Escort Service — About Us / Services / Contact Us
   Shared component classes (prefixed ncr-page-) reused across all three
   pages, which are picked up automatically via WordPress's page-{slug}.php
   template convention (page-about-us.php, page-services.php,
   page-contact-us.php) — no page template assignment needed.
   Loads only on these pages (see ncr_enqueue_static_page_assets() in
   functions.php) and relies on the --ncr-* variables from site-global.css.
   ========================================================================== */

.ncr-page {
  background: var(--ncr-bg);
  color: var(--ncr-text);
  font-family: "Manrope", "Open Sans", sans-serif;
  overflow-x: hidden;
}
.ncr-page h1,
.ncr-page h2,
.ncr-page h3 {
  font-family: "Playfair Display", "Manrope", serif;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.ncr-page img {
  max-width: 100%;
  display: block;
}
.ncr-page-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---- Hero ---- */
.ncr-page-hero {
  position: relative;
  padding: 60px 0 60px;
  text-align: center;
  overflow: hidden;
}
.ncr-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ncr-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.ncr-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.5) 0%, var(--ncr-bg) 92%);
}
.ncr-page-hero:not(:has(.ncr-page-hero-bg)) {
  background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(212, 175, 55, 0.16), transparent 65%), var(--ncr-bg);
}
.ncr-page-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ncr-gold-light);
  margin-bottom: 14px;
}
.ncr-page-eyebrow::before,
.ncr-page-eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ncr-gold);
  display: inline-block;
}
.ncr-page-hero h1 {
  position: relative;
  font-size: clamp(30px, 5vw, 48px);
}
.ncr-page-hero-sub {
  position: relative;
  color: var(--ncr-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ---- Trust badge strip ---- */
.ncr-page-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.ncr-page-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ncr-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ncr-border);
  padding: 10px 18px;
  border-radius: 100px;
}
.ncr-page-trust svg {
  width: 15px;
  height: 15px;
  color: var(--ncr-gold);
  flex-shrink: 0;
}

/* ---- Content card (prose) ---- */
.ncr-page-body {
  padding: 10px 0 90px;
}
.ncr-page-content {
  background: var(--ncr-card);
  border: 1px solid var(--ncr-border);
  border-radius: 24px;
  padding: 44px;
}
.ncr-page-content > *:first-child {
  margin-top: 0;
}
.ncr-page-content p {
  color: var(--ncr-muted);
  font-size: 16.5px;
  line-height: 1.85;
  margin: 0 0 22px;
}
.ncr-page-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 42px 0 16px;
}
.ncr-page-content h2:first-child {
  margin-top: 0;
}
.ncr-page-content h3 {
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 32px 0 14px;
}
.ncr-page-content a {
  color: var(--ncr-gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 3px;
}
.ncr-page-content a:hover {
  color: var(--ncr-gold);
}
.ncr-page-content ul,
.ncr-page-content ol {
  color: var(--ncr-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 22px;
  padding-left: 22px;
}
.ncr-page-content li {
  margin-bottom: 8px;
}
.ncr-page-content strong {
  color: #fff;
}

/* ---- Final CTA ---- */
.ncr-page-cta {
  position: relative;
  text-align: center;
  padding: 90px 0 100px;
  background: radial-gradient(ellipse 70% 90% at 50% 100%, rgba(212, 175, 55, 0.12), transparent 65%), var(--ncr-bg-2);
  border-top: 1px solid var(--ncr-border);
  overflow: hidden;
}
.ncr-page-cta h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-top: 12px;
}
.ncr-page-cta p {
  color: var(--ncr-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.ncr-page-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.ncr-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.ncr-page-btn svg {
  width: 18px;
  height: 18px;
}
.ncr-page-btn-gold {
  background: linear-gradient(135deg, var(--ncr-gold-light), var(--ncr-gold) 55%, var(--ncr-gold-dim));
  color: #140f02;
  box-shadow: 0 8px 30px -8px rgba(212, 175, 55, 0.65);
}
.ncr-page-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -8px rgba(212, 175, 55, 0.85);
}
.ncr-page-btn-wa {
  background: var(--ncr-card);
  color: #fff;
  border: 1px solid rgba(37, 211, 102, 0.4);
}
.ncr-page-btn-wa:hover {
  transform: translateY(-3px);
  border-color: #25d366;
}

/* ---- Contact page: two-column layout ---- */
.ncr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.ncr-contact-card {
  background: linear-gradient(165deg, var(--ncr-card), #141414);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  padding: 30px;
  position: sticky;
  top: 100px;
}
.ncr-contact-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.ncr-contact-info-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.ncr-contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ncr-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--ncr-border);
}
.ncr-contact-info-list li:first-child {
  padding-top: 0;
}
.ncr-contact-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ncr-contact-info-list svg {
  width: 18px;
  height: 18px;
  color: var(--ncr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.ncr-contact-info-list a {
  color: var(--ncr-text);
  font-weight: 600;
  text-decoration: none;
}
.ncr-contact-info-list a:hover {
  color: var(--ncr-gold-light);
}
.ncr-contact-card .ncr-page-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  padding: 15px 20px;
}
.ncr-contact-card .ncr-page-btn:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .ncr-contact-grid {
    grid-template-columns: 1fr;
  }
  .ncr-contact-card {
    position: static;
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .ncr-page-hero {
    padding: 128px 0 40px;
  }
  .ncr-page-content {
    padding: 26px 20px;
    border-radius: 18px;
  }
  .ncr-page-content p {
    font-size: 15.5px;
  }
  .ncr-page-cta {
    padding: 70px 0 80px;
  }
  .ncr-page-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
  .ncr-contact-card {
    max-width: none;
  }
}
