/* ==========================================================================
   NCR Escort Service — Premium Homepage
   Scoped entirely under .ncr-luxe so no other template is affected.
   ========================================================================== */

.ncr-luxe {
  --bg: #090909;
  --bg-2: #111111;
  --card: #1b1b1b;
  --card-hover: #212121;
  --gold: #d4af37;
  --gold-light: #f3e3ac;
  --gold-dim: #8a7020;
  --text: #ffffff;
  --muted: #b3b3b3;
  --border: rgba(255, 255, 255, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Open Sans", sans-serif;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.ncr-luxe * {
  box-sizing: border-box;
}

.ncr-luxe img {
  max-width: 100%;
  display: block;
}

.ncr-luxe h1,
.ncr-luxe h2,
.ncr-luxe h3,
.ncr-luxe h4 {
  font-family: "Playfair Display", "Manrope", serif;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.ncr-luxe a {
  color: inherit;
}

.ncr-luxe .luxe-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.ncr-luxe .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.ncr-luxe .eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.ncr-luxe .luxe-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-top: 14px;
}

.ncr-luxe .luxe-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin-top: 16px;
  line-height: 1.7;
}

.ncr-luxe .luxe-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Reveal-on-scroll */
.ncr-luxe .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.ncr-luxe .reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.ncr-luxe .reveal-stagger.in > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* Buttons */
.ncr-luxe .btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.ncr-luxe .btn:active {
  transform: scale(0.97);
}
.ncr-luxe .btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dim));
  color: #140f02;
  box-shadow: 0 8px 30px -8px rgba(212, 175, 55, 0.65);
}
.ncr-luxe .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -8px rgba(212, 175, 55, 0.85);
}
.ncr-luxe .btn-whatsapp {
  background: #111;
  color: #fff;
  border-color: rgba(37, 211, 102, 0.4);
}
.ncr-luxe .btn-whatsapp:hover {
  background: #1d3b2a;
  border-color: #25d366;
  transform: translateY(-3px);
}
.ncr-luxe .btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.ncr-luxe .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.ncr-luxe .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: luxe-ripple 0.6s linear;
  pointer-events: none;
}
@keyframes luxe-ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
.ncr-luxe .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ncr-luxe .luxe-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #1a1710 0%, var(--bg) 55%), var(--bg);
  isolation: isolate;
}

.ncr-luxe .luxe-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ncr-luxe .luxe-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  will-change: transform;
}
.ncr-luxe .luxe-blob.b1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px;
  left: -100px;
}
.ncr-luxe .luxe-blob.b2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #7a5c12 0%, transparent 70%);
  bottom: -140px;
  right: -80px;
}

.ncr-luxe .luxe-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.ncr-luxe .luxe-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.ncr-luxe .luxe-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.ncr-luxe .luxe-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ncr-luxe .luxe-badge svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.ncr-luxe .luxe-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* Location finder glass card */
.ncr-luxe .luxe-finder {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
  padding: 22px;
  max-width: 520px;
}
.ncr-luxe .luxe-finder p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ncr-luxe .luxe-finder-row {
  display: flex;
  gap: 10px;
}
.ncr-luxe .service-dropdown {
  flex: 1;
  background: #0d0d0d;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 16px;
  border-radius: 100px;
  font-size: 15px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.ncr-luxe .luxe-finder-row .btn {
  padding: 15px 26px;
}

/* Hero visual panel */
.ncr-luxe .luxe-hero-visual {
  position: relative;
}
.ncr-luxe .luxe-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.ncr-luxe .luxe-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}
.ncr-luxe .luxe-visual-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 9, 0.9) 100%);
}
.ncr-luxe .luxe-float-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: luxe-float 5s ease-in-out infinite;
}
.ncr-luxe .luxe-float-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.18);
  flex-shrink: 0;
}
.ncr-luxe .luxe-float-card strong {
  display: block;
  font-size: 14.5px;
}
.ncr-luxe .luxe-float-card span {
  color: var(--muted);
  font-size: 12.5px;
}
@keyframes luxe-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ncr-luxe .luxe-scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ncr-luxe .luxe-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: luxe-scroll-line 1.8s ease-in-out infinite;
}
@keyframes luxe-scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.ncr-luxe .luxe-trust {
  padding: 20px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ncr-luxe .luxe-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.ncr-luxe .luxe-trust-item {
  text-align: center;
  padding: 10px;
}
.ncr-luxe .luxe-trust-item .num {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--gold-light);
  font-weight: 700;
}
.ncr-luxe .luxe-trust-item .label {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   LOCATION MARQUEE (ticker of existing location loop)
   ========================================================================== */
.ncr-luxe .luxe-marquee-wrap {
  padding: 26px 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.ncr-luxe .luxe-marquee-wrap::before,
.ncr-luxe .luxe-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ncr-luxe .luxe-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.ncr-luxe .luxe-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.ncr-luxe .luxe-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: luxe-marquee 38s linear infinite;
}
.ncr-luxe .luxe-marquee-wrap:hover .luxe-marquee-track {
  animation-play-state: paused;
}
@keyframes luxe-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ncr-luxe .luxe-chip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.ncr-luxe .luxe-chip:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.ncr-luxe .luxe-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.ncr-luxe .luxe-section {
  padding: 20px 0;
  position: relative;
}
.ncr-luxe .luxe-section.alt {
  background: var(--bg-2);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.ncr-luxe .luxe-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.ncr-luxe .luxe-about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.ncr-luxe .luxe-about-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ncr-luxe .luxe-about-card li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-size: 14.5px;
  align-items: flex-start;
}
.ncr-luxe .luxe-about-card li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.ncr-luxe .luxe-about-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.ncr-luxe .luxe-about-body h2.content,
.ncr-luxe .luxe-about-body h3.content {
  font-family: "Playfair Display", serif;
  color: var(--text);
  font-size: 26px;
  text-transform: none;
  margin: 36px 0 14px;
}
.ncr-luxe .luxe-about-body h2.content:first-child {
  margin-top: 0;
}
.ncr-luxe .luxe-about-body p {
  margin: 0 0 16px;
}
.ncr-luxe .luxe-about-body ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.ncr-luxe .luxe-about-body ul li {
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.ncr-luxe .luxe-about-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  transform: rotate(45deg);
}
.ncr-luxe .luxe-about-fade {
  position: relative;
  max-height: 430px;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.ncr-luxe .luxe-about-fade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(transparent, var(--bg));
  transition: opacity 0.4s ease;
}
.ncr-luxe .luxe-section.alt .luxe-about-fade::after {
  background: linear-gradient(transparent, var(--bg-2));
}
.ncr-luxe .luxe-about-fade.expanded {
  max-height: 4000px;
}
.ncr-luxe .luxe-about-fade.expanded::after {
  opacity: 0;
}
.ncr-luxe .luxe-readmore {
  margin-top: 20px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.ncr-luxe .luxe-readmore:hover {
  border-color: var(--gold);
}

/* ==========================================================================
   CARD GRIDS (Profiles / Locations shared card language)
   ========================================================================== */
.ncr-luxe .luxe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ncr-luxe .luxe-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.ncr-luxe .luxe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  border-color: rgba(212, 175, 55, 0.4);
}
.ncr-luxe .luxe-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
}
.ncr-luxe .luxe-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ncr-luxe .luxe-card:hover .luxe-card-media img {
  transform: scale(1.08);
}
.ncr-luxe .luxe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(9, 9, 9, 0.95) 100%);
}
.ncr-luxe .luxe-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(9, 9, 9, 0.65);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #eafff0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ncr-luxe .luxe-card-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
}
.ncr-luxe .luxe-card-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 9, 9, 0.65);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.ncr-luxe .luxe-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.ncr-luxe .luxe-card-content h3 {
  font-size: 19px;
  color: #fff;
}
.ncr-luxe .luxe-card-content .loc {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}
.ncr-luxe .luxe-card-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #140f02;
  background: var(--gold-light);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: gap 0.3s ease, background 0.3s ease;
}
.ncr-luxe .luxe-card-btn:hover {
  gap: 12px;
  background: var(--gold);
}

/* Location card variant (text-title style, no rating/badge) */
.ncr-luxe .luxe-card.loc-card .luxe-card-content h3 a {
  color: #fff;
  text-decoration: none;
}
.ncr-luxe .luxe-card.loc-card .luxe-card-content p {
  color: var(--muted);
  font-size: 13px;
  margin: 6px 0 0;
}

.ncr-luxe .luxe-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.ncr-luxe .luxe-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ncr-luxe .luxe-why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.ncr-luxe .luxe-why-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ncr-luxe .luxe-why-card:hover::before {
  opacity: 1;
}
.ncr-luxe .luxe-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  background: var(--card-hover);
}
.ncr-luxe .luxe-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ncr-luxe .luxe-why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}
.ncr-luxe .luxe-why-card h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 10px;
}
.ncr-luxe .luxe-why-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   HOW IT WORKS — timeline
   ========================================================================== */
.ncr-luxe .luxe-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.ncr-luxe .luxe-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.ncr-luxe .luxe-step {
  position: relative;
  text-align: left;
}
.ncr-luxe .luxe-step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ncr-luxe .luxe-step:hover .luxe-step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12);
}
.ncr-luxe .luxe-step h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.ncr-luxe .luxe-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.ncr-luxe .luxe-testi-track-wrap {
  position: relative;
}
.ncr-luxe .luxe-testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.ncr-luxe .luxe-testi-track::-webkit-scrollbar {
  display: none;
}
.ncr-luxe .luxe-testi-card {
  flex: 0 0 clamp(280px, 32%, 380px);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ncr-luxe .luxe-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}
.ncr-luxe .luxe-testi-card p.quote {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}
.ncr-luxe .luxe-testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.ncr-luxe .luxe-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #140f02;
  flex-shrink: 0;
}
.ncr-luxe .luxe-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ncr-luxe .luxe-testi-name svg {
  width: 14px;
  height: 14px;
  color: #2ecc71;
}
.ncr-luxe .luxe-testi-name small {
  color: var(--muted);
  font-weight: 500;
  display: block;
  font-size: 12px;
}
.ncr-luxe .luxe-carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.ncr-luxe .luxe-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ncr-luxe .luxe-nav-btn:hover {
  border-color: var(--gold);
  transform: scale(1.06);
}
.ncr-luxe .luxe-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.ncr-luxe .luxe-blog-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.ncr-luxe .luxe-blog-track::-webkit-scrollbar {
  display: none;
}
.ncr-luxe .luxe-blog-card {
  flex: 0 0 clamp(240px, 28%, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.ncr-luxe .luxe-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
}
.ncr-luxe .luxe-blog-card .img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0d0d0d;
  flex-shrink: 0;
}
.ncr-luxe .luxe-blog-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ncr-luxe .luxe-blog-card .luxe-blog-noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1b1b1b, #0d0d0d);
}
.ncr-luxe .luxe-blog-card:hover .img img {
  transform: scale(1.06);
}
.ncr-luxe .luxe-blog-card .description {
    padding: 20px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background: #11121294;
}
.ncr-luxe .luxe-blog-card:hover .description {
    visibility: visible;
    opacity: 1;
}
.ncr-luxe .luxe-blog-date {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.ncr-luxe .luxe-blog-card h3 {
  font-size: 16.5px;
  margin: 0;
  font-family: "Manrope", "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
.ncr-luxe .luxe-blog-card h3 a {
  color: #fff;
  text-decoration: none;
}
.ncr-luxe .luxe-blog-card h3 a:hover {
  color: var(--gold-light);
}
.ncr-luxe .luxe-blog-card .description p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 10px 0 0;
  flex-grow: 1;
}
.ncr-luxe .luxe-blog-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ncr-luxe .luxe-blog-more:hover {
  gap: 10px;
  color: var(--gold);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.ncr-luxe .luxe-faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.ncr-luxe .luxe-faq-item {
  border-bottom: 1px solid var(--border);
}
.ncr-luxe .luxe-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.ncr-luxe .luxe-faq-q .plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.ncr-luxe .luxe-faq-q .plus::before,
.ncr-luxe .luxe-faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ncr-luxe .luxe-faq-q .plus::before {
  width: 12px;
  height: 1.5px;
}
.ncr-luxe .luxe-faq-q .plus::after {
  width: 1.5px;
  height: 12px;
}
.ncr-luxe .luxe-faq-item.open .luxe-faq-q .plus {
  transform: rotate(45deg);
  border-color: var(--gold-light);
}
.ncr-luxe .luxe-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}
.ncr-luxe .luxe-faq-a p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 760px;
}
.ncr-luxe .luxe-faq-item.open .luxe-faq-a {
  max-height: 240px;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.ncr-luxe .luxe-final {
  position: relative;
  padding: 30px 0;
  text-align: center;
  background: radial-gradient(ellipse 70% 90% at 50% 100%, #1a1710 0%, var(--bg) 60%);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.ncr-luxe .luxe-final .luxe-heading {
  margin: 18px auto 0;
}
.ncr-luxe .luxe-final .luxe-sub {
  margin-left: auto;
  margin-right: auto;
}
.ncr-luxe .luxe-final-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ncr-luxe .luxe-final-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 46px;
  color: var(--muted);
  font-size: 13.5px;
}
.ncr-luxe .luxe-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ncr-luxe .luxe-final-trust svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .ncr-luxe .luxe-hero-grid {
    grid-template-columns: 1fr;
  }
  .ncr-luxe .luxe-hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .ncr-luxe .luxe-about-grid {
    grid-template-columns: 1fr;
  }
  .ncr-luxe .luxe-about-card {
    position: static;
  }
  .ncr-luxe .luxe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ncr-luxe .luxe-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ncr-luxe .luxe-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ncr-luxe .luxe-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .ncr-luxe .luxe-steps::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .ncr-luxe .luxe-hero {
    padding: 30px 0 ;
    min-height: unset;
  }
  .ncr-luxe .luxe-section {
    padding: 30px 0;
  }
  .ncr-luxe .luxe-finder-row {
    flex-direction: column;
  }
  .ncr-luxe .luxe-hero-ctas .btn,
  .ncr-luxe .luxe-final-ctas .btn {
    flex: 1 1 100%;
  }
  .ncr-luxe .luxe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ncr-luxe .luxe-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ncr-luxe .luxe-why-grid {
    grid-template-columns: 1fr;
  }
  .ncr-luxe .luxe-steps {
    grid-template-columns: 1fr;
  }
  .ncr-luxe .luxe-about-card {
    padding: 26px;
  }
  .ncr-luxe .luxe-testi-card,
  .ncr-luxe .luxe-blog-card {
    flex: 0 0 82%;
  }
  .ncr-luxe .luxe-head-row {
    margin-bottom: 32px;
  }
  .ncr-luxe .luxe-final {
    padding: 30px 0 ;
  }
}

/* Featured Locations — extra legibility room on small screens so the
   title/excerpt/button stack never gets cropped by the media container. */
@media (max-width: 760px) {
  .ncr-luxe .luxe-grid.loc-grid {
    gap: 14px;
  }
  .ncr-luxe .loc-card .luxe-card-media {
    aspect-ratio: 3 / 4.6;
  }
  .ncr-luxe .loc-card .luxe-card-overlay {
    background: linear-gradient(180deg, transparent 8%, rgba(9, 9, 9, 0.55) 42%, rgba(9, 9, 9, 0.97) 100%);
  }
  .ncr-luxe .loc-card .luxe-card-content {
    padding: 14px;
  }
  .ncr-luxe .loc-card .luxe-card-content h3 {
    font-size: 15px;
    line-height: 1.3;
  }
  .ncr-luxe .luxe-card.loc-card .luxe-card-content p {
    font-size: 11.5px;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ncr-luxe .loc-card .luxe-card-btn {
    margin-top: 8px;
    padding: 7px 12px;
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .ncr-luxe .luxe-grid.loc-grid {
    grid-template-columns: 1fr;
  }
  .ncr-luxe .loc-card .luxe-card-media {
    aspect-ratio: 16 / 10;
  }
  .ncr-luxe .loc-card .luxe-card-content h3 {
    font-size: 18px;
  }
  .ncr-luxe .luxe-card.loc-card .luxe-card-content p {
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

@media (max-width: 420px) {
  .ncr-luxe .luxe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ncr-luxe .luxe-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ncr-luxe * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================================================================
   MOBILE STICKY CALL / WHATSAPP BAR
   This stylesheet is only enqueued on the homepage (see
   ncr_enqueue_home_premium_assets() in functions.php), so overriding the
   site-wide .contact_layout bar here only affects the homepage — every
   other template keeps its original bar untouched.
   ========================================================================== */
.contact_layout {
  display: none;
}

@media (max-width: 760px) {
  .contact_layout {
    display: block;
    background: rgba(9, 9, 9, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.5);
  }
  .contact_inner {
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .call-me,
  .wa-me {
    width: auto;
    flex: 1 1 0;
  }
  .call-me a,
  .wa-me a {
    height: auto;
    min-height: 52px;
    padding: 14px 12px;
    border-radius: 14px;
    font-family: "Manrope", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, filter 0.2s ease;
  }
  .call-me a::before,
  .wa-me a::before {
    content: "";
    width: 17px;
    height: 17px;
    flex: none;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  .call-me a {
    background: linear-gradient(135deg, #d4af37, #b8892c);
    color: #0a0a0a;
  }
  .call-me a::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.5 15.5 0 006.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.1 21 3 13.9 3 5c0-.6.4-1 1-1h3.2c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.5 15.5 0 006.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.1 21 3 13.9 3 5c0-.6.4-1 1-1h3.2c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1z'/%3E%3C/svg%3E");
  }
  .wa-me a {
    background: #1b1b1b;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
  }
  .wa-me a::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 00-8.6 15.1L2 22l5.1-1.3A10 10 0 1012 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3 .8.8-2.9-.2-.3A8.2 8.2 0 1112 20.2zm4.5-6.1c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.7.8-.8 1-.2.2-.3.2-.5.1-.2-.1-1.1-.4-2-1.3-.7-.7-1.2-1.5-1.4-1.7-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.2-.5.1-.2 0-.4 0-.5-.1-.1-.6-1.5-.9-2-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.2s1 2.6 1.1 2.7c.1.2 2 3 4.8 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.2-1.2-.1-.1-.3-.2-.5-.3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 00-8.6 15.1L2 22l5.1-1.3A10 10 0 1012 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3 .8.8-2.9-.2-.3A8.2 8.2 0 1112 20.2zm4.5-6.1c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.7.8-.8 1-.2.2-.3.2-.5.1-.2-.1-1.1-.4-2-1.3-.7-.7-1.2-1.5-1.4-1.7-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.2-.5.1-.2 0-.4 0-.5-.1-.1-.6-1.5-.9-2-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.2s1 2.6 1.1 2.7c.1.2 2 3 4.8 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.5-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.2-1.2-.1-.1-.3-.2-.5-.3z'/%3E%3C/svg%3E");
  }
  .call-me a:active,
  .wa-me a:active {
    transform: scale(0.96);
  }

  
}
