/* ==========================================================================
   NCR Escort Service — Global site chrome (loads on every page)
   Covers: mobile burger menu drawer, the site footer, and the floating
   "tap to call" widget.
   Namespaced with .ncr- prefixes / scoped to existing header/footer
   selectors so nothing else on the page is affected.
   ========================================================================== */

:root {
  --ncr-bg: #090909;
  --ncr-bg-2: #111111;
  --ncr-card: #1b1b1b;
  --ncr-gold: #d4af37;
  --ncr-gold-light: #f3e3ac;
  --ncr-gold-dim: #8a7020;
  --ncr-text: #ffffff;
  --ncr-muted: #b3b3b3;
  --ncr-border: rgba(255, 255, 255, 0.09);
  --ncr-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   MOBILE MENU — full-height right-side drawer
   ========================================================================== */
.ncr-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 99998;
}
.ncr-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
body.ncr-menu-open {
  overflow: hidden;
}

@media (max-width: 1040px) {
  .burgermenu {
    width: 30px;
    height: 22px;
    gap: 0;
  }
  .burgermenu div {
    height: 3px;
    background-color: var(--ncr-gold-light);
    border-radius: 3px;
  }
  .burgermenu:hover div {
    background-color: var(--ncr-gold);
  }

  .mb_menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    height: 100vh;
    width: min(88vw, 380px);
    min-width: 0;
    max-width: none;
    background: linear-gradient(180deg, #0c0c0c, #131313 60%, #0c0c0c);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.55);
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.5s var(--ncr-ease);
    padding: 20px 22px 24px;
    overflow-y: auto;
    z-index: 99999;
    display: block;
  }
  .mb_menu.show {
    transform: translateX(0);
  }

  .mb_menu_top {
    padding: 4px 0 18px;
    border-bottom: 1px solid var(--ncr-border);
    margin-bottom: 18px;
  }
  .mb_menu_top .logo {
    max-width: 130px;
    margin-right: 0;
  }
  .mb_menu_top .burgermenu {
    width: 26px;
    height: 20px;
  }
  .mb_menu_top .burgermenu div {
    background-color: var(--ncr-gold-light);
  }

  .mb_menu .nav-links {
    display: block;
  }
  .mb_menu .main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mb_menu .main-menu > ul > li {
    border-bottom: 1px solid var(--ncr-border);
  }
  .mb_menu .main-menu a.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 2px;
    font-family: "Manrope", "Open Sans", sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--ncr-text);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
  }
  .mb_menu .main-menu a.menu-link:hover,
  .mb_menu .main-menu a.menu-link:active {
    color: var(--ncr-gold-light);
    padding-left: 6px;
  }
  .mb_menu .main-menu i.fa-solid {
    font-size: 12px;
    color: var(--ncr-muted);
    transition: transform 0.3s ease;
  }
  .mb_menu .main-menu .menu-item-has-children.open > a.menu-link i.fa-solid {
    transform: rotate(180deg);
    color: var(--ncr-gold);
  }

  .mb_menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--ncr-card);
    border: 1px solid var(--ncr-border);
    border-radius: 12px;
    margin: 0 0 12px;
    padding: 4px 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ncr-ease), padding 0.35s ease;
  }
  .mb_menu .menu-item-has-children.open > .dropdown {
    max-height: 600px;
    padding: 6px 14px;
  }
  .mb_menu .dropdown a {
    color: var(--ncr-muted) !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid var(--ncr-border) !important;
    padding: 12px 0 !important;
  }
  .mb_menu .dropdown li:last-child a {
    border-bottom: none !important;
  }

  .ncr-mnav-cta {
    display: flex;
    gap: 10px;
    margin-top: 26px;
  }
  .ncr-mnav-cta a {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 10px;
    border-radius: 12px;
    font-family: "Manrope", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
  }
  .ncr-mnav-cta svg {
    width: 16px;
    height: 16px;
  }
  .ncr-mnav-cta .ncr-mnav-call {
    background: linear-gradient(135deg, var(--ncr-gold), #b8892c);
    color: #0a0a0a;
  }
  .ncr-mnav-cta .ncr-mnav-wa {
    background: var(--ncr-bg-2);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.35);
  }

  .ncr-mnav-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ncr-border);
    font-size: 11.5px;
    color: var(--ncr-muted);
  }
  .ncr-mnav-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .ncr-mnav-trust svg {
    width: 13px;
    height: 13px;
    color: var(--ncr-gold);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ncr-footer {
  background: var(--ncr-bg);
  color: var(--ncr-text);
  font-family: "Manrope", "Open Sans", sans-serif;
  border-top: 1px solid var(--ncr-border);
  position: relative;
  overflow: hidden;
}
.ncr-footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
  pointer-events: none;
}
.ncr-footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ncr-footer-top {
  padding: 72px 0 48px;
}
.ncr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}

.ncr-footer-logo {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.ncr-footer-brand p {
  color: var(--ncr-muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 0 20px;
}
.ncr-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.ncr-footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ncr-gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px 12px;
  border-radius: 100px;
}
.ncr-footer-trust svg {
  width: 12px;
  height: 12px;
}
.ncr-footer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ncr-footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s var(--ncr-ease), filter 0.3s ease;
}
.ncr-footer-cta a svg {
  width: 15px;
  height: 15px;
}
.ncr-footer-cta a:hover {
  transform: translateY(-3px);
}
.ncr-footer-cta .ncr-fcta-call {
  background: linear-gradient(135deg, var(--ncr-gold), #b8892c);
  color: #0a0a0a;
}
.ncr-footer-cta .ncr-fcta-wa {
  background: var(--ncr-card);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ncr-footer-col h4 {
  font-family: "Playfair Display", "Manrope", serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px;
}
.ncr-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ncr-footer-col li {
  margin-bottom: 13px;
}
.ncr-footer-col a {
  color: var(--ncr-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.ncr-footer-col a:hover {
  color: var(--ncr-gold-light);
  padding-left: 3px;
}
.ncr-footer-col.ncr-footer-menu ul {
  display: flex;
  flex-direction: column;
}
.ncr-footer-col.ncr-footer-menu .menu-item-has-children .dropdown {
  display: none;
}

.ncr-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ncr-muted);
  font-size: 14px;
}
.ncr-footer-contact-list li a {
  color: var(--ncr-muted);
}
.ncr-footer-contact-list li a:hover {
  color: var(--ncr-gold-light);
}
.ncr-footer-contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--ncr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.ncr-footer-bottom {
  border-top: 1px solid var(--ncr-border);
  padding: 22px 0;
  position: relative;
  z-index: 1;
}
.ncr-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.ncr-footer-bottom p {
  margin: 0;
  color: var(--ncr-muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.ncr-footer-disclaimer {
  max-width: 640px;
  text-align: right;
}

@media (max-width: 980px) {
  .ncr-footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .ncr-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .ncr-footer-top {
    padding: 56px 0 36px;
  }
  .ncr-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ncr-footer-brand p {
    max-width: none;
  }
  .ncr-footer-cta a {
    flex: 1 1 auto;
    justify-content: center;
  }
  .ncr-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .ncr-footer-disclaimer {
    text-align: left;
  }
}

/* ==========================================================================
   FLOATING "TAP TO CALL" WIDGET — every page, right side
   ========================================================================== */
.ncr-call-widget-wrap {
  position: fixed;
  right: 20px;
  bottom: 112px;
  z-index: 99000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ncr-call-widget-wrap.hidden {
  display: none;
}

.ncr-call-widget {
  position: relative;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ncr-call-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.55);
  animation: ncrCallPulse 2.2s ease-out infinite;
}
.ncr-call-ring.r2 {
  animation-delay: 1.1s;
}
@keyframes ncrCallPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

.ncr-call-photo {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ncr-card);
  border: 3px solid var(--ncr-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.ncr-call-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ncr-call-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #1a9e56);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ncr-bg);
  z-index: 3;
  animation: ncrPhoneRing 1.6s ease-in-out infinite;
}
.ncr-call-badge svg {
  width: 14px;
  height: 14px;
  color: #fff;
}
@keyframes ncrPhoneRing {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-18deg);
  }
  20% {
    transform: rotate(14deg);
  }
  30% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.ncr-call-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ncr-text);
  background: rgba(9, 9, 9, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  pointer-events: none;
}

.ncr-call-close {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ncr-card);
  border: 1px solid var(--ncr-border);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  padding: 0;
}
.ncr-call-close:hover {
  border-color: var(--ncr-gold);
  color: var(--ncr-gold-light);
}

@media (prefers-reduced-motion: reduce) {
  .ncr-call-ring,
  .ncr-call-badge {
    animation: none;
  }
}

@media (max-width: 760px) {
  .ncr-call-widget-wrap {
    right: 12px;
    bottom: 96px;
  }
  .ncr-call-widget {
    width: 64px;
    height: 64px;
  }
  .ncr-call-photo {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
  .ncr-call-badge {
    width: 22px;
    height: 22px;
  }
  .ncr-call-badge svg {
    width: 11px;
    height: 11px;
  }
  .ncr-call-label {
    font-size: 9.5px;
    padding: 4px 9px;
  }
  .ncr-call-close {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

span.ncr-call-number {
    left: -100%;
    position: absolute;
    background: #fff;
    padding: 5px;
    border-radius: 29px;
    top: 50%;
    transform: translate(-50%);
}

.ncr-luxe.footer-btm {
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 9999;
    background-color: transparent;
    overflow: Visible;
    transform: translateX(-50%);
    display: none;
}

.ncr-luxe.footer-btm.show{
    display: block;
}

.ncr-luxe.footer-btm .ncr-call-ring {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    border: 2px solid rgba(212, 175, 55, 0.55);
    animation: ncrCallPulse 2.2s ease-out infinite;
}
