/* ================================================================
   CRIMSON FOREST — Red & Green Luxury Theme
   Blood Red #c0152a | Forest Green #0a7c3e | Gold #e8c84a
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red:    #c0152a;
  --red2:   #8b0d1c;
  --red3:   #e8364a;
  --green:  #0a7c3e;
  --green2: #0d9e50;
  --green3: #05522a;
  --gold:   #e8c84a;
  --gold2:  #f5e070;
  --void:   #050508;
  --ash:    #f4f0e8;
  --ash2:   #c8c0b0;
  --muted:  #706860;
}

/* ================================================================ BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden !important; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--void); color: var(--ash);
  /* Push content above fixed floating call bar */
  padding-bottom: 54px;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar.fixed-top { left: 0; right: 0; width: 100%; }
.navbar {
  background: #0a0205;
  padding: 0;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 3px 30px rgba(192,21,42,.3);
}
.navbar > .container { height: 64px; display: flex; align-items: center; }

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 19px; letter-spacing: 2px; font-weight: 900;
  color: #fff; flex-shrink: 0;
  position: relative; padding-right: 18px;
}
.navbar-brand:hover {
  font-family: 'Playfair Display', serif;
  font-size: 19px; letter-spacing: 2px; font-weight: 900;
  color: #fff; flex-shrink: 0;
  position: relative; padding-right: 18px;
}
.navbar-brand::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 2px;
  background: var(--red);
}

.nav-link {
  font-size: 16px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #a09088 !important;
  padding: 5px 0 !important; transition: .2s; position: relative;
}
.nav-link::before {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--red); transition: .3s;
}
.nav-link:hover { color: #fff !important; }
.nav-link:hover::before { width: 100%; }

.navbar-toggler {
  border: 2px solid var(--red); border-radius: 0;
  padding: 5px 9px; background: rgba(192,21,42,.12);
}
.navbar-toggler i { color: var(--red); font-size: 15px; }
.btn-close { filter: invert(1) brightness(.5); }

.offcanvas { width: 100% !important; background: #080205; }
.offcanvas-header {
  border-bottom: 2px solid var(--red); padding: 20px 24px;
  background: rgba(192,21,42,.06);
}
.offcanvas-title {
  font-family: 'Playfair Display', serif; font-size: 18px;
  letter-spacing: 2px; color: #fff; font-weight: 900;
}
.mobile-menu ul { list-style: none; padding: 6px 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu .nav-link {
  color: #a09088 !important; padding: 15px 24px !important;
  font-size: 11px; letter-spacing: 2px; display: block;
}
.mobile-menu .nav-link:hover {
  color: #fff !important; padding-left: 34px !important;
  background: rgba(192,21,42,.08);
}
@media(min-width:992px) { .mobile-only { display: none !important; } }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; min-height: 100vh; padding-top: 64px;
  overflow: hidden; display: flex; align-items: center;
  background: #060102;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(.18) saturate(.5) sepia(.3);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(192,21,42,.7) 0%,
    rgba(139,13,28,.5) 30%,
    transparent 55%,
    rgba(10,124,62,.15) 80%,
    rgba(5,82,42,.3) 100%
  );
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%; z-index: 2;
  background: linear-gradient(to top, var(--void) 0%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 3; width: 100%;
  padding: 80px 20px 120px; text-align: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px; line-height: 1.08; font-weight: 900;
  color: #fff; margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero h1 span { font-style: italic; color: var(--gold); display: block; }

.hero-select-box {
  max-width: 660px; margin: 42px auto 0;
  padding: 36px 44px 42px;
  background: rgba(5,8,5,.88); backdrop-filter: blur(20px);
  border: 1px solid rgba(10,124,62,.4); position: relative;
}
.hero-select-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--gold), var(--green), var(--red));
  background-size: 300% auto; animation: slide 4s linear infinite;
}
.hero-select-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red), var(--gold), var(--red), var(--green));
  background-size: 300% auto; animation: slide 4s linear infinite reverse;
}
@keyframes slide { 0%{background-position:0%} 100%{background-position:300%} }

.hero-select-subtitle {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green2); margin-bottom: 20px; font-weight: 700;
}
.hero-select-wrapper { position: relative; max-width: 460px; margin: 0 auto; }
.hero-city-select {
  width: 100%; padding: 14px 46px 14px 18px;
  border: 1px solid rgba(10,124,62,.5);
  background: rgba(5,8,5,.95); color: var(--ash);
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  outline: 0; appearance: none; cursor: pointer; transition: .3s;
}
.hero-select-wrapper::after {
  content: "\f107"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--green2); pointer-events: none;
}
.hero-city-select:focus { border-color: var(--gold); }
.hero-city-select option { background: #050808; }

/* ================================================================
   VIDEO SECTION — Full width, red header bar, NOT cut off
   ================================================================ */
.hero-video {
  position: relative; overflow: hidden;
  background: #000; width: 100%;
}

/* Red header banner across full width */
.hero-video-banner {
  width: 100%; background: var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(232,200,74,.25);
}
.hero-video-banner-left {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  color: #fff; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; display: inline-block;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-video-banner-right {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; font-style: italic;
  color: var(--gold); letter-spacing: 2px;
}

/* Video itself */
.hero-video-wrap { position: relative; }
.hero-video-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to right, rgba(5,5,8,.6) 0%, transparent 18%, transparent 82%, rgba(5,5,8,.6) 100%),
    linear-gradient(105deg, rgba(192,21,42,.18) 0%, transparent 40%, transparent 60%, rgba(10,124,62,.18) 100%);
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(10,124,62,.025) 3px, rgba(10,124,62,.025) 4px
  );
}
.hero-video video {
  width: 100%; height: 520px; object-fit: cover; display: block;
  filter: brightness(.55) saturate(.9) hue-rotate(100deg);
}

/* Green footer bar on video */
.hero-video-footer {
  width: 100%; background: var(--green3);
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 13px 28px;
  border-top: 1px solid rgba(232,200,74,.2);
}
.hero-video-footer a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  padding: 10px 28px;
  transition: .25s;
}
.hero-video-footer a:first-child {
  background: var(--red); border: 1px solid rgba(255,255,255,.15);
}
.hero-video-footer a:last-child {
  background: var(--green); border: 1px solid rgba(255,255,255,.15);
}
.hero-video-footer a:hover { filter: brightness(1.2); transform: translateY(-2px); }

@media(max-width:768px){
  .hero-video video { height: 280px; }
  .hero-video-banner { flex-direction: column; gap: 6px; text-align: center; padding: 12px 16px; }
  .hero-video-footer { flex-direction: column; gap: 10px; padding: 14px 16px; }
  .hero-video-footer a { width: 100%; justify-content: center; }
}

/* ================================================================
   FEATURE SECTIONS
   ================================================================ */
.adult-feature-section {
  padding: 110px 0; position: relative; overflow: hidden;
  background: #0c0205;
}
.adult-feature-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(192,21,42,.025) 50px, rgba(192,21,42,.025) 51px),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(192,21,42,.015) 50px, rgba(192,21,42,.015) 51px);
}
.adult-feature-section::after {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,21,42,.1) 0%, transparent 65%);
  pointer-events: none;
}
.adult-feature-section.alt { background: #020c05; }
.adult-feature-section.alt::before {
  background:
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(10,124,62,.03) 50px, rgba(10,124,62,.03) 51px),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(10,124,62,.02) 50px, rgba(10,124,62,.02) 51px);
}
.adult-feature-section.alt::after {
  top: auto; bottom: -100px; left: auto; right: -100px;
  background: radial-gradient(circle, rgba(10,124,62,.12) 0%, transparent 65%);
}

.adult-container { max-width: 1200px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
.adult-row { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }

.adult-image { position: relative; }
.adult-image-frame {
  position: relative;
  outline: 2px solid rgba(192,21,42,.3); outline-offset: 8px;
}
.adult-feature-section.alt .adult-image-frame { outline-color: rgba(10,124,62,.3); }
.adult-image-frame::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--red), transparent 50%, var(--red2));
  z-index: 1; pointer-events: none;
}
.adult-feature-section.alt .adult-image-frame::before {
  background: linear-gradient(135deg, var(--green), transparent 50%, var(--green3));
}
.adult-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: brightness(.8) saturate(1.1);
  transition: .6s; display: block; position: relative; z-index: 2;
}
.adult-image:hover img { transform: scale(1.05); filter: brightness(.92) saturate(1.2); }
.adult-image-num {
  position: absolute; bottom: -20px; right: -20px;
  font-family: 'Playfair Display', serif; font-size: 110px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(192,21,42,.12);
  pointer-events: none; z-index: 0; user-select: none;
}
.adult-feature-section.alt .adult-image-num { -webkit-text-stroke-color: rgba(10,124,62,.12); }
.adult-image-accent {
  position: absolute; top: 10%; right: -28px; bottom: 10%; width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  pointer-events: none;
}
.adult-feature-section.alt .adult-image-accent {
  background: linear-gradient(to bottom, transparent, var(--green2), transparent);
}

.adult-content { padding: 0; }
.adult-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red3); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.adult-feature-section.alt .adult-eyebrow { color: var(--green2); }
.adult-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.adult-feature-section.alt .adult-eyebrow::before { background: var(--green2); }

.adult-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px; line-height: 1.18; font-weight: 900;
  color: var(--ash); margin-bottom: 24px;
}
.adult-content h2 em { font-style: italic; color: var(--gold); }
.adult-content p { font-size: 14.5px; line-height: 1.88; color: var(--ash2); margin-bottom: 14px; }
.adult-content p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; transition: .2s; }
.adult-content p a:hover { color: var(--gold2); }
.adult-content p b { color: var(--ash); }

.adult-divider {
  height: 3px; width: 60px; margin: 24px 0;
  background: linear-gradient(90deg, var(--red), transparent);
}
.adult-feature-section.alt .adult-divider { background: linear-gradient(90deg, var(--green2), transparent); }

.adult-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
.adult-btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: 14px 32px; font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; transition: .3s;
  box-shadow: 0 4px 20px rgba(192,21,42,.35);
}
.adult-feature-section.alt .adult-btn-call {
  background: var(--green); box-shadow: 0 4px 20px rgba(10,124,62,.35);
}
.adult-btn-call:hover { transform: translateY(-3px); filter: brightness(1.15); color: #fff; }
.adult-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ash2);
  padding: 13px 32px; font-weight: 700; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; transition: .3s;
  border: 1px solid rgba(232,200,74,.35);
}
.adult-btn-wa:hover { border-color: var(--gold); color: var(--gold2); transform: translateY(-3px); }

@media(max-width:992px){
  .adult-row { grid-template-columns: 1fr; gap: 46px; }
  .adult-cta { justify-content: center; }
  .adult-eyebrow { justify-content: center; }
  .adult-divider { margin: 20px auto; }
  .adult-image-accent { display: none; }
}
@media(max-width:768px){
  .adult-feature-section { padding: 72px 0; }
  .adult-container { padding: 0 18px; }
  .adult-content h2 { font-size: 26px; }
}

/* ================================================================
   LISTING CARDS
   ================================================================ */
.escort-feature-section {
  padding: 100px 0; position: relative;
  background: #030505; overflow: hidden;
}
.escort-feature-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(10,124,62,.04) 12%, transparent 12.5%, transparent 87%, rgba(10,124,62,.04) 87.5%),
    linear-gradient(150deg, rgba(10,124,62,.04) 12%, transparent 12.5%, transparent 87%, rgba(10,124,62,.04) 87.5%);
  background-size: 40px 70px;
}
.escort-feature-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 20%, #030505 75%);
}

.listings-title {
  text-align: center; margin-bottom: 64px; padding: 0 20px;
  position: relative; z-index: 2;
}
.listings-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px; font-weight: 900; color: var(--ash); line-height: 1;
}
.listings-title h2::before { content: '—'; margin-right: 16px; color: var(--red); font-style: italic; }
.listings-title h2::after  { content: '—'; margin-left: 16px; color: var(--green2); font-style: italic; }
.listings-title p {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green2); margin-top: 14px; font-weight: 700;
}

.listings-wrap {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 20px; padding: 0 24px; position: relative; z-index: 2;
}

.listing-card {
  background: #0a0a0c; overflow: hidden;
  border: 1px solid rgba(10,124,62,.15);
  transition: .38s ease; display: flex; flex-direction: column; position: relative;
}
.listing-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--red2));
  transform: scaleY(0); transform-origin: top; transition: .4s; z-index: 10;
}
.listing-card::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--green3));
  transform: scaleY(0); transform-origin: bottom; transition: .4s; z-index: 10;
}
.listing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232,200,74,.3);
  box-shadow: -4px 4px 30px rgba(192,21,42,.1), 4px 4px 30px rgba(10,124,62,.1);
}
.listing-card:hover::before { transform: scaleY(1); }
.listing-card:hover::after  { transform: scaleY(1); }

.listing-img { position: relative; overflow: hidden; }
.listing-img img {
  width: 100%; height: 310px; object-fit: cover;
  filter: brightness(.72) saturate(1.05); transition: .75s;
}
.listing-card:hover .listing-img img { transform: scale(1.08); filter: brightness(.88); }
.listing-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(10,10,12,1) 0%, transparent 100%);
}
.listing-badge {
  position: absolute; top: 0; left: 0; z-index: 5;
  font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 12px; color: #fff; background: var(--red);
}
.listing-card:nth-child(even) .listing-badge { background: var(--green); }
.listing-age {
  position: absolute; bottom: 14px; right: 12px; z-index: 5;
  font-size: 12px; font-weight: 700; color: var(--gold);
  font-family: 'Playfair Display', serif; font-style: italic;
}

.listing-body {
  padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column;
  background: #0a0a0c;
}
.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700; color: var(--ash);
  margin-bottom: 4px; line-height: 1.2;
}
.profile-sub {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green2); margin-bottom: 12px; font-weight: 600;
}
.tags { display: none; }
.listing-sep {
  height: 1px; margin-bottom: 14px;
  background: linear-gradient(90deg, var(--red), var(--green), transparent);
  opacity: .4;
}
.listing-body::after { content: ''; flex: 1; }

.listing-btns { display: flex; gap: 8px; margin-top: 12px; }
.listing-btns a {
  flex: 1; height: 38px; display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; transition: .28s;
}
.btn-tg { background: var(--red); color: #fff; border: none; }
.btn-tg:hover { background: var(--red2); transform: translateY(-2px); color: #fff; }
.btn-wa { background: transparent; color: #888; border: 1px solid rgba(10,124,62,.35); }
.btn-wa:hover { background: rgba(10,124,62,.12); border-color: var(--green2); color: var(--green2); transform: translateY(-2px); }
.listing-btns i { font-size: 12px; }

@media(max-width:768px){
  .listing-img img { height: 255px; }
  .listings-title h2 { font-size: 28px; }
  .listings-wrap { gap: 12px; padding: 0 12px; }
}

/* ================================================================
   ESCORT CONTENT SECTION
   ================================================================ */
.escort-content-section {
  padding: 100px 20px; background: #0c0905;
  position: relative; overflow: hidden;
}
.escort-content-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 80px,
    rgba(232,200,74,.015) 80px, rgba(232,200,74,.015) 81px
  );
}
.escort-content-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
  background-size: 200% auto; animation: slide 3s linear infinite;
}

.escort-container { max-width: 1040px; margin: auto; position: relative; z-index: 2; }
.escort-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900; color: #f0e8d0;
  margin-bottom: 18px; line-height: 1.25; margin-top: 46px;
  padding-bottom: 12px; border-bottom: 2px solid var(--red);
  position: relative;
}
.escort-title:first-child { margin-top: 0; }
.escort-title::before {
  content: '§'; position: absolute; left: -24px; top: 3px;
  color: rgba(232,200,74,.3); font-size: 28px;
}
.escort-text { font-size: 14.5px; line-height: 1.92; margin-bottom: 20px; color: #b8a890; }
.escort-text a { color: var(--gold); }
.escort-text strong { color: #f0e8d0; }

.escort-points { list-style: none; padding: 0; margin: 20px 0 28px; }
.escort-points li {
  padding: 12px 0 12px 26px; font-size: 14px; color: #b8a890;
  position: relative; border-bottom: 1px solid rgba(232,200,74,.06);
}
.escort-points li:last-child { border-bottom: none; }
.escort-points li::before {
  content: "▶"; position: absolute; left: 0; top: 14px;
  color: var(--red); font-size: 8px;
}
.escort-points li:nth-child(even)::before { color: var(--green2); }
.escort-points li strong { color: var(--gold); margin-right: 6px; }

.escort-table {
  width: 100%; border-collapse: collapse; margin: 24px 0 28px;
  border: 2px solid rgba(232,200,74,.2);
}
.escort-table th {
  background: var(--red); color: #fff;
  padding: 14px 18px; text-align: left;
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
}
.escort-table th:last-child { background: var(--green); }
.escort-table td {
  padding: 13px 18px; color: #b8a890; font-size: 14px;
  border-bottom: 1px solid rgba(232,200,74,.06);
  background: rgba(5,5,5,.5);
}
.escort-table tr:last-child td { border-bottom: none; }
.escort-table td strong { color: var(--gold); }
.escort-table tbody tr:hover td { background: rgba(192,21,42,.06); }

@media(max-width:768px){
  .escort-container { padding-left: 8px; }
  .escort-title { font-size: 20px; }
  .escort-title::before { display: none; }
  .escort-table td, .escort-table th { font-size: 12px; padding: 10px 12px; }
}

/* ================================================================
   LOCATIONS SECTION
   ================================================================ */
.locations-section {
  padding: 100px 20px; background: #050a04;
  position: relative; overflow: hidden;
}
.locations-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10,124,62,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,124,62,.07) 1px, transparent 1px),
    linear-gradient(rgba(10,124,62,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,124,62,.03) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px;
}
.locations-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 20%, #050a04 78%);
}
.locations-container { max-width: 1300px; margin: auto; position: relative; z-index: 2; }
.locations-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 900; color: var(--ash);
  margin-bottom: 54px; text-align: center;
}
.locations-title::before {
  content: ''; display: block; width: 50px; height: 3px; margin: 0 auto 16px;
  background: linear-gradient(90deg, var(--red), var(--green));
}
.locations-title::after {
  content: ''; display: block; width: 100%; height: 1px; margin-top: 16px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
}

.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(172px,1fr)); gap: 8px; }
.loc-btn {
  display: block; padding: 11px 12px; font-size: 11px; font-weight: 600;
  text-align: center; color: #788a78;
  background: rgba(5,10,4,.9); border: 1px solid rgba(10,124,62,.2);
  transition: .25s; position: relative; overflow: hidden;
}
.loc-btn.pink, .loc-btn.maroon { border-color: rgba(192,21,42,.22); }
.loc-btn.blue  { border-color: rgba(10,124,62,.22); }
.loc-btn.orange{ border-color: rgba(232,200,74,.18); }
.loc-btn:hover {
  background: rgba(10,124,62,.12); border-color: var(--green2); color: #e0f0e0;
  transform: translateY(-3px); box-shadow: 0 4px 14px rgba(10,124,62,.15);
}
.loc-btn.pink:hover, .loc-btn.maroon:hover {
  background: rgba(192,21,42,.1); border-color: var(--red3); color: #ffd0d0;
  box-shadow: 0 4px 14px rgba(192,21,42,.15);
}
.loc-btn.orange:hover {
  background: rgba(232,200,74,.08); border-color: var(--gold); color: var(--gold2);
  box-shadow: 0 4px 14px rgba(232,200,74,.1);
}
@media(max-width:768px){
  .locations-title { font-size: 28px; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
}

/* ================================================================
   TAGS SECTION
   ================================================================ */
.tags-section {
  background: #070708; padding: 60px 0;
  border-top: 1px solid rgba(192,21,42,.2);
  border-bottom: 1px solid rgba(10,124,62,.2);
}
.tags-title {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--ash); margin-bottom: 22px;
}
.tags-title i { color: var(--red); margin-right: 10px; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  padding: 5px 14px; font-size: 11px; font-weight: 600;
  background: transparent; color: var(--muted);
  border: 1px solid rgba(255,255,255,.08); transition: .22s; cursor: default;
}
.tag-item:nth-child(3n+1):hover { background: rgba(192,21,42,.18); color: #ffd0d0; border-color: var(--red); transform: translateY(-2px); }
.tag-item:nth-child(3n+2):hover { background: rgba(10,124,62,.14); color: #d0ffd8; border-color: var(--green2); transform: translateY(-2px); }
.tag-item:nth-child(3n+3):hover { background: rgba(232,200,74,.1); color: var(--gold2); border-color: var(--gold); transform: translateY(-2px); }
@media(max-width:768px){ .tags-title { text-align: center; } .tags-wrap { justify-content: center; } }

/* ================================================================
   FOOTER — Fully visible, nothing hidden under call bar
   ================================================================ */
.lx2-footer-wrap {
  background: #050505; color: var(--ash2); position: relative;
  /* Extra bottom padding so footer content above floating bar */
  padding-bottom: 60px;
}

/* Stat band — 4 solid colored blocks */
.footer-stat-band {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.footer-stat-item {
  padding: 36px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.footer-stat-item:nth-child(1) { background: var(--red); }
.footer-stat-item:nth-child(2) { background: var(--red2); }
.footer-stat-item:nth-child(3) { background: var(--green3); }
.footer-stat-item:nth-child(4) { background: var(--green); }
.footer-stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(0,0,0,.08) 10px, rgba(0,0,0,.08) 11px
  );
}
.footer-stat-num {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900;
  color: #fff; line-height: 1; position: relative; z-index: 1;
}
.footer-stat-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: 6px; font-weight: 600;
  position: relative; z-index: 1;
}

/* Main footer grid */
.footer-main {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  background: #070707;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-col {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.04);
}
.footer-col:first-child { background: rgba(192,21,42,.05); border-right: 2px solid rgba(192,21,42,.2); }
.footer-col:nth-child(3) { background: rgba(10,124,62,.04); }
.footer-col:last-child { border-right: none; }

.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900;
  margin-bottom: 14px; display: block; color: #fff; letter-spacing: 1px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-about-text { font-size: 13px; line-height: 1.8; color: #705848; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; font-size: 10px; font-weight: 700;
  background: rgba(192,21,42,.15); color: var(--red3);
  border: 1px solid rgba(192,21,42,.3);
}
.footer-badge:nth-child(even) { background: rgba(10,124,62,.12); color: var(--green2); border-color: rgba(10,124,62,.3); }
.footer-badge i { font-size: 9px; }

.footer-col-title {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.footer-col:nth-child(3) .footer-col-title { border-bottom-color: var(--green2); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #605040; font-size: 13px; transition: .22s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 16px; line-height: 1; transition: .22s; }
.footer-col:nth-child(3) .footer-links a::before { color: var(--green2); }
.footer-links a:hover { color: var(--ash); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; margin-bottom: 14px;
}
.footer-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(192,21,42,.2); border: 1px solid rgba(192,21,42,.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon i { color: var(--red3); font-size: 12px; }
.footer-contact-text { padding-top: 6px; color: #605040; }
.footer-contact-text a { color: var(--ash2); font-weight: 500; transition: .22s; }
.footer-contact-text a:hover { color: var(--gold2); }

/* Bottom copyright bar */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding: 18px 32px;
  background: #020202; font-size: 13px; color: #3a3030;
}
.footer-bottom a { color: #3a3030; transition: .22s; }
.footer-bottom a:hover { color: var(--red3); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-heart i { color: var(--red); margin: 0 3px; }

.lx2-footer-wrap .container { max-width: 100% !important; padding: 0 !important; }
.lx2-footer-wrap .row { display: none !important; }

@media(max-width:1024px){
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-stat-band { grid-template-columns: repeat(2,1fr); }
  .footer-col { padding: 36px 24px; }
}
@media(max-width:600px){
  .footer-main { grid-template-columns: 1fr; }
  .footer-stat-band { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; padding: 14px 16px; }
  .footer-bottom-links { justify-content: center; }
}

/* ================================================================
   FLOATING CALL BAR — Fixed bottom, Red left / Green right
   content above it via body padding-bottom
   ================================================================ */
.nowcalling {
  display: block; position: fixed; bottom: 0; left: 0;
  width: 100%; z-index: 9999;
}
.lcol, .rcol { float: left; width: 50%; }
.lcol a, .rcol a {
  display: block; padding: 15px 0; text-align: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 15px; letter-spacing: 2px;
}
.lcol { background: var(--red); border-top: 2px solid var(--red3); }
.lcol a { color: #fff; }
.rcol { background: var(--green); border-top: 2px solid var(--green2); }
.rcol a { color: #fff; }

/* ================================================================
   FLOATING ICONS
   ================================================================ */
.floating-icon {
  position: fixed; right: 18px; width: 46px; height: 46px; z-index: 999999;
}
.floating-icon a {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; transition: .25s;
}
.floating-icon a:hover { transform: scale(1.12) translateY(-3px); }
.floating-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

/* Sit above the call bar (54px) */
.telegram-icon { bottom: 64px; }
.telegram-icon a { background: var(--red); border: 2px solid var(--red2); }
.whatsapp-icon { bottom: 120px; }
.whatsapp-icon a { background: var(--green3); border: 2px solid var(--green); }
.call-icon { bottom: 176px; }
.call-icon a { background: var(--red2); border: 2px solid var(--red); }

@media(max-width:480px){
  .navbar-brand { font-size: 15px; }
  .hero h1 { font-size: 32px; }
  .hero-select-box { padding: 24px 16px 30px; }
  .floating-icon { right: 6px; width: 42px; height: 42px; }
  .floating-icon img { width: 16px; }
  .telegram-icon { bottom: 62px; }
  .whatsapp-icon { bottom: 116px; }
  .call-icon { bottom: 170px; }
}

/* ================================================================
   AGE VERIFICATION OVERLAY
   ================================================================ */

/* When age gate is open — lock scroll on BOTH html & body */
html.age-gate-open,
html.age-gate-open body,
body.age-gate-open {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: auto !important;
}
body.age-gate-open .floating-icon,
body.age-gate-open .floating-call-bar,
body.age-gate-open #cookie-bar,
body.age-gate-open .navbar {
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Full-screen backdrop — locks scroll until user confirms */
#age-gate {
  position: fixed; inset: 0; z-index: 9999999;
  background: rgba(5,5,8,.96); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: ageFadeIn .35s ease forwards;
}
@keyframes ageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#age-gate.hide {
  animation: ageFadeOut .4s ease forwards;
  pointer-events: none;
}
@keyframes ageFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Card */
.age-card {
  max-width: 520px; width: 100%;
  background: #0d0408;
  border: 1px solid rgba(192,21,42,.35);
  position: relative; text-align: center;
  padding: 52px 44px 48px;
  animation: ageSlideUp .4s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes ageSlideUp {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Animated top bar */
.age-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
  background-size: 300% auto;
  animation: slide 4s linear infinite;
}

/* "18+" badge */
.age-badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(192,21,42,.12);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900; color: var(--gold);
  box-shadow: 0 0 28px rgba(192,21,42,.25);
}

.age-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: 1px; margin-bottom: 12px;
}
.age-card h2 span { color: var(--gold); font-style: italic; }

.age-card p {
  font-size: 13px; line-height: 1.7;
  color: var(--ash2); margin-bottom: 32px;
}

/* Buttons */
.age-actions {
  display: flex; gap: 12px;
}
.age-btn-yes, .age-btn-no {
  flex: 1; padding: 14px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: .25s;
}
.age-btn-yes {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(192,21,42,.35);
}
.age-btn-yes:hover {
  background: var(--red3);
  box-shadow: 0 6px 28px rgba(192,21,42,.55);
  transform: translateY(-2px);
}
.age-btn-no {
  background: transparent;
  color: var(--ash2);
  border: 1px solid rgba(255,255,255,.12);
}
.age-btn-no:hover {
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

/* Disclaimer line */
.age-disclaimer {
  margin-top: 22px;
  font-size: 11px; color: var(--muted); line-height: 1.6;
}
.age-disclaimer a { color: var(--ash2); border-bottom: 1px solid rgba(255,255,255,.15); }
.age-disclaimer a:hover { color: var(--gold); border-color: var(--gold); }

/* Under-18 redirect message */
.age-blocked {
  display: none;
  padding: 24px 0 8px;
  color: var(--ash2); font-size: 13px; line-height: 1.7;
}
.age-blocked strong { color: var(--red3); }

@media(max-width:480px) {
  .age-card { padding: 40px 22px 36px; }
  .age-card h2 { font-size: 21px; }
  .age-actions { flex-direction: column; }
}


/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */

#cookie-bar {
  position: fixed; bottom: 54px; left: 0; right: 0;
  z-index: 9998;
  background: #0d0408;
  border-top: 2px solid rgba(192,21,42,.4);
  box-shadow: 0 -6px 40px rgba(0,0,0,.6);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: cookieSlideUp .45s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-bar.hide {
  animation: cookieSlideDown .35s ease forwards;
  pointer-events: none;
}
@keyframes cookieSlideDown {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}

/* Left strip accent */
.cookie-accent {
  flex-shrink: 0;
  width: 4px; height: 44px; align-self: center;
  background: linear-gradient(180deg, var(--red), var(--green));
  border-radius: 2px;
}

/* Text */
.cookie-text {
  flex: 1; min-width: 240px;
}
.cookie-text strong {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff; margin-bottom: 4px;
}
.cookie-text p {
  font-size: 12px; line-height: 1.6; color: var(--ash2); margin: 0;
}
.cookie-text a {
  color: var(--gold); border-bottom: 1px solid rgba(232,200,74,.3);
}
.cookie-text a:hover { border-color: var(--gold); }

/* Actions */
.cookie-actions {
  display: flex; gap: 10px; flex-shrink: 0;
}
.cookie-btn-accept, .cookie-btn-decline {
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: .2s;
}
.cookie-btn-accept {
  background: var(--red); color: #fff;
  box-shadow: 0 3px 16px rgba(192,21,42,.3);
}
.cookie-btn-accept:hover {
  background: var(--red3);
  box-shadow: 0 5px 22px rgba(192,21,42,.5);
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: transparent; color: var(--ash2);
  border: 1px solid rgba(255,255,255,.12);
}
.cookie-btn-decline:hover {
  color: #fff; border-color: rgba(255,255,255,.3);
}

@media(max-width:600px) {
  #cookie-bar { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 16px; }
  .cookie-accent { width: 44px; height: 4px; align-self: auto; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}