/* ==========================================================
   JAIPUR – LUXURY DARK MAROON × GOLD EDITORIAL THEME
   Primary  : #6a0202  (dark maroon)
   Deep     : #3d0101  (near-black maroon)
   Accent   : #c9a84c  (antique gold)
   Rose     : #e8b4b8  (rose blush)
   Light    : #f5ede0  (warm cream)
   BG Dark  : #0a0202  (almost-black wine)
   Card     : #130303  (deep card)
   Surface  : #1f0606  (elevated surface)
   ========================================================== */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- RESET + BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0202;
  color: #f5ede0;
  overflow-x: hidden;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0202; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #6a0202, #c9a84c); border-radius: 10px; }

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .4;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar.fixed-top { left: 0; right: 0; width: 100%; }
.navbar {
  background: rgba(10, 2, 2, 0.93);
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar .container {
  display: flex; align-items: center;
  padding: 0 24px; height: 64px;
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 700;
  color: #c9a84c !important;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative;
}
.navbar-brand::after {
  content: '';
  display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin-top: 2px;
}
.nav-link {
  font-size: 15.5px; font-weight: 500;
  color: #d4c4b0 !important;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 8px 0 !important; transition: color .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 0;
  width: 0; height: 1px;
  background: #c9a84c; transition: width .3s ease;
}
.nav-link:hover { color: #c9a84c !important; }
.nav-link:hover::after { width: 100%; }
.navbar-toggler { border: none; background: none; color: #c9a84c; font-size: 20px; padding: 4px; }

/* OFFCANVAS */
.offcanvas { width: 100%; background: #0a0202; }
.offcanvas-header {
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 22px 24px;
}
.offcanvas-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: #c9a84c;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.mobile-menu ul { list-style: none; padding: 8px 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu .nav-link {
  color: #d4c4b0 !important;
  padding: 16px 24px !important; display: block;
  font-size: 13px; letter-spacing: 1.5px;
}
.mobile-menu .nav-link:hover { color: #c9a84c !important; background: rgba(201,168,76,.05); padding-left: 32px !important; }
.btn-close { filter: invert(1); opacity: .6; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.22) saturate(.6) sepia(.5);
  transform: scale(1.05);
}
/* diagonal maroon overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(160deg, rgba(106,2,2,.75) 0%, rgba(10,2,2,.5) 50%, rgba(61,1,1,.8) 100%);
}
/* bottom fade */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; z-index: 2;
  background: linear-gradient(to bottom, transparent, #0a0202);
}
.hero-inner {
  position: relative; z-index: 3;
  text-align: center; padding: 60px 24px 80px;
  max-width: 960px; margin: 0 auto;
}
/* ornamental line */
.hero-inner::before {
  content: '— ✦ —';
  display: block;
  color: rgba(201,168,76,.5);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; letter-spacing: 8px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-weight: 700;
  line-height: 1.1; margin-bottom: 28px;
  color: #f5ede0;
  text-shadow: 0 4px 40px rgba(106,2,2,.9);
}
.hero h1 a { color: #c9a84c; }
.hero h1 span {
  color: #e8b4b8;
  font-style: italic;
}
.hero-select-box {
  max-width: 720px; margin: 36px auto 0;
  text-align: center;
}
.hero-select-subtitle {
  font-size: 11px; font-weight: 600;
  color: #c9a84c; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 14px;
}
.hero-select-wrapper { position: relative; }
.hero-city-select {
  width: 100%;
  padding: 18px 52px 18px 24px;
  background: rgba(106,2,2,.2);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 2px;
  color: #f5ede0; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none; appearance: none;
  transition: .3s; letter-spacing: .5px;
  backdrop-filter: blur(10px);
}
.hero-city-select:hover,
.hero-city-select:focus {
  border-color: #c9a84c;
  background: rgba(106,2,2,.35);
  box-shadow: 0 0 0 1px rgba(201,168,76,.2), 0 8px 30px rgba(106,2,2,.4);
}
.hero-city-select option { background: #130303; color: #f5ede0; }
.hero-select-wrapper::before {
  content: '▼'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); color: #c9a84c; font-size: 10px;
  pointer-events: none;
}
.hero p { margin-top: 20px; font-size: 14px; color: rgba(245,237,224,.6); }
.hero p a { color: #c9a84c; }

/* =============================================
   VIDEO SECTION
   ============================================= */
.hero-video-wrap {
  position: relative; height: 90vh;
  overflow: hidden; background: #0a0202;
  display: flex; align-items: center; justify-content: center;
}
.video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(45px) brightness(.2) sepia(.6);
  transform: scale(1.25);
}
.video-card {
  position: relative; width: 62%; max-width: 820px;
  border-radius: 2px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.25),
    0 0 0 6px rgba(106,2,2,.3),
    0 40px 100px rgba(10,2,2,.95);
}
.video-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border: 1px solid rgba(201,168,76,.2);
}
.video-card video { width: 100%; height: auto; display: block; }
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 160px rgba(10,2,2,.97);
  pointer-events: none; z-index: 1;
}

/* =============================================
   PROFILE LIST SECTION  (escort cards)
   ============================================= */
.profile-list-section {
  background: #0a0202;
  padding: 100px 0;
  position: relative;
}
.profile-list-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}

/* SECTION HEADING */
.main-heading {
  font-family: 'Cormorant Garamond', serif;
  text-align: center; color: #c9a84c;
  font-size: 46px; font-weight: 700;
  margin-bottom: 60px; line-height: 1.15;
  padding: 0 20px;
}
.main-heading::before, .main-heading::after {
  content: '◈';
  display: inline-block;
  color: rgba(201,168,76,.35);
  margin: 0 14px; font-size: 20px;
  vertical-align: middle;
}

/* ESCORT CARD — completely new look: full-width horizontal card */
.escort-card {
  display: flex;
  background: #130303;
  margin: 0 auto 2px;
  border-top: 1px solid rgba(201,168,76,.08);
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: background .3s;
  max-width: 1100px;
}
.escort-card:hover { background: #1a0404; }
.escort-card .row { width: 100%; margin: 0; }

/* image column */
.escort-img {
  width: 260px; min-width: 260px; height: 220px;
  overflow: hidden; position: relative;
  flex-shrink: 0;
}
.escort-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 20%;
  transition: transform .5s ease;
  filter: brightness(.9) saturate(.85);
}
.escort-card:hover .escort-img img {
  transform: scale(1.06); filter: brightness(1) saturate(1);
}
.online-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,2,2,.75);
  border: 1px solid #2a9d1f;
  color: #4caf50; font-size: 10.5px; font-weight: 600;
  padding: 4px 10px; border-radius: 2px;
  letter-spacing: .8px; text-transform: uppercase;
  z-index: 5;
  animation: pulseOnline 2s infinite;
}
@keyframes pulseOnline {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* text column */
.escort-card .col-md-6 {
  border-left: 1px solid rgba(201,168,76,.08);
  border-right: 1px solid rgba(201,168,76,.08);
}
.title {
  font-family: 'Cormorant Garamond', serif;
  color: #f5ede0; font-weight: 700;
  font-size: 22px; line-height: 1.3; margin-bottom: 10px;
}
.desc { font-size: 14px; color: #b8a898; line-height: 1.75; }

.tag {
  display: inline-block;
  padding: 3px 10px; margin: 2px 4px 2px 0;
  font-size: 11px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  border: 1px solid rgba(106,2,2,.6);
  color: #e8b4b8; background: rgba(106,2,2,.25);
}
.tag.age {
  border-color: rgba(201,168,76,.4);
  color: #c9a84c; background: rgba(201,168,76,.1);
}

/* CTA column */
.escort-action {
  background: transparent;
  border-left: 1px solid rgba(201,168,76,.08);
}
.cta-wrap {
  width: 100%; max-width: 200px;
  display: flex; flex-direction: column; gap: 10px;
}
.call-btn, .whatsapp-btn {
  padding: 12px 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; border: 1px solid;
  transition: .25s ease; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.call-btn {
  background: #6a0202;
  border-color: #8b0000;
  color: #f5ede0;
}
.call-btn:hover {
  background: transparent; border-color: #c9a84c;
  color: #c9a84c;
}
.whatsapp-btn {
  background: transparent;
  border-color: rgba(201,168,76,.35);
  color: #c9a84c;
}
.whatsapp-btn:hover { background: rgba(201,168,76,.1); border-color: #c9a84c; }

/* =============================================
   ADULT FEATURE SECTIONS
   ============================================= */
.adult-feature-section,
.adult-feature-section.alt {
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.adult-feature-section { background: #0d0303; }
.adult-feature-section.alt { background: #0a0202; }

/* decorative corner marks */
.adult-feature-section::before,
.adult-feature-section.alt::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106,2,2,.5) 30%, rgba(201,168,76,.3) 50%, rgba(106,2,2,.5) 70%, transparent);
}

.adult-feature-section a,
.adult-feature-section.alt a,
.escort-content-section a { color: #c9a84c; }
.adult-feature-section b,
.adult-feature-section.alt b,
.escort-content-section b { color: #e8b4b8; }

.adult-container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.adult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* image – stacked framing effect */
.adult-image {
  position: relative;
}
.adult-image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid rgba(201,168,76,.2);
  pointer-events: none; z-index: 0;
}
.adult-image::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  border: 1px solid rgba(106,2,2,.4);
  pointer-events: none; z-index: 0;
}
.adult-image img {
  width: 100%; border: none;
  filter: brightness(.9) saturate(.8);
  position: relative; z-index: 1;
  transition: .5s ease;
}
.adult-image img:hover { filter: brightness(1) saturate(1); transform: scale(1.02); }

/* content box */
.adult-content, .adult-content.alt {
  padding: 0;
  background: transparent; border: none; box-shadow: none;
}
.adult-content h2, .adult-content.alt h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; line-height: 1.2;
  color: #f5ede0; margin-bottom: 24px;
  border: none; padding: 0;
}
.adult-content h2 em, .adult-content.alt h2 em { color: #c9a84c; font-style: normal; }
/* gold rule under heading */
.adult-content h2::after, .adult-content.alt h2::after {
  content: '';
  display: block; width: 60px; height: 2px; margin-top: 16px;
  background: linear-gradient(90deg, #6a0202, #c9a84c);
}
.adult-content p { font-size: 15.5px; line-height: 1.85; color: #c4b4a0; margin-bottom: 16px; }

/* CTA buttons – inline pill pair */
.adult-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.adult-btn-call {
  padding: 13px 32px;
  background: #6a0202; color: #f5ede0;
  border: 1px solid #8b0000;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: .25s;
}
.adult-btn-call:hover { background: transparent; border-color: #c9a84c; color: #c9a84c; }
.adult-btn-wa {
  padding: 13px 32px;
  background: transparent; color: #c9a84c;
  border: 1px solid rgba(201,168,76,.4);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: .25s;
}
.adult-btn-wa:hover { background: rgba(201,168,76,.1); border-color: #c9a84c; }

/* =============================================
   LISTING CARDS  (grid of profiles)
   ============================================= */
.escort-feature-section {
  background: #0a0202; padding: 100px 0;
  position: relative;
}
.escort-feature-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}

/* section title */
.listings-title { text-align: center; margin-bottom: 56px; padding: 0 20px; }
.listings-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700; color: #f5ede0;
  margin-bottom: 12px; line-height: 1.15;
}
.listings-title h2 span { color: #c9a84c; font-style: italic; }
.listings-title p {
  font-size: 14px; color: #8a7a6a;
  letter-spacing: .8px; text-transform: uppercase;
}

/* grid */
.listings-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.08);
}

/* card — magazine editorial style */
.listing-card {
  background: #0a0202;
  display: flex; flex-direction: column;
  transition: background .3s;
  overflow: hidden;
}
.listing-card:hover { background: #130303; }
.listing-img { position: relative; overflow: hidden; }
.listing-img img {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
  filter: brightness(.85) saturate(.75);
  transition: transform .55s ease, filter .4s ease;
}
.listing-card:hover .listing-img img {
  transform: scale(1.08); filter: brightness(1) saturate(1);
}
/* category ribbon */
.listing-img::after {
  content: attr(data-cat);
  /* won't show – decorative only */
}
.listing-body {
  padding: 22px 20px 24px;
  display: flex; flex-direction: column; flex: 1;
  border-top: 1px solid rgba(201,168,76,.1);
}
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: #f5ede0; margin-bottom: 6px;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tags span {
  font-size: 10px; padding: 3px 9px;
  background: rgba(106,2,2,.3);
  border: 1px solid rgba(201,168,76,.2);
  color: #c9a84c; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
}
.listing-body::after { content: ''; flex: 1; }
.listing-btns { display: flex; gap: 8px; margin-top: 14px; }
.listing-btns a {
  flex: 1;
  padding: 10px 6px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid; transition: .25s;
}
.btn-tg {
  background: #6a0202; border-color: #6a0202; color: #f5ede0;
}
.btn-tg:hover { background: transparent; border-color: #c9a84c; color: #c9a84c; }
.btn-wa {
  background: transparent;
  border-color: rgba(201,168,76,.3); color: #c9a84c;
}
.btn-wa:hover { background: rgba(201,168,76,.1); border-color: #c9a84c; }
.listing-btns i { font-size: 14px; }

/* =============================================
   ESCORT CONTENT (text sections)
   ============================================= */
.escort-content-section {
  background: #0d0303; padding: 90px 0;
  position: relative;
}
.escort-content-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.escort-container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }

.escort-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700;
  color: #c9a84c; margin-bottom: 28px;
  line-height: 1.2; text-align: left;
}
.escort-title::after {
  content: '';
  display: block; width: 50px; height: 2px; margin-top: 14px;
  background: linear-gradient(90deg, #6a0202, #c9a84c);
}
.escort-text {
  font-size: 15.5px; line-height: 1.9;
  color: #b8a898; margin-bottom: 18px;
}

/* service list — 2-col tag cloud */
.service-list, .escort-content-section ul {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 6px; margin: 22px 0 30px;
}
.service-list li, .escort-content-section ul li {
  padding: 9px 14px 9px 30px;
  font-size: 13.5px; color: #d4c4b0;
  background: rgba(106,2,2,.15);
  border: 1px solid rgba(201,168,76,.12);
  position: relative; transition: .2s;
  letter-spacing: .3px;
}
.service-list li::before,
.escort-content-section ul li::before {
  content: '◆';
  position: absolute; left: 11px; top: 10px;
  color: #c9a84c; font-size: 8px;
}
.service-list li:hover,
.escort-content-section ul li:hover {
  background: rgba(106,2,2,.35); border-color: rgba(201,168,76,.35);
  color: #f5ede0;
}

/* =============================================
   TABLES
   ============================================= */
.table-scroll {
  width: 100%; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(201,168,76,.12);
  margin: 24px 0 36px;
}
.escort-table {
  min-width: 600px; width: 100%;
  border-collapse: collapse;
  background: #0a0202;
}
.escort-table thead tr {
  background: #6a0202;
  border-bottom: 2px solid rgba(201,168,76,.3);
}
.escort-table th {
  padding: 14px 18px;
  color: #c9a84c; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: left;
}
.escort-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: #c4b4a0; font-size: 14px;
}
.escort-table td strong { color: #f5ede0; }
.escort-table tbody tr:hover { background: rgba(106,2,2,.12); }
.table-call-btn {
  display: inline-block; padding: 6px 16px;
  background: transparent; color: #c9a84c;
  border: 1px solid rgba(201,168,76,.35);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: .25s;
}
.table-call-btn:hover { background: #6a0202; border-color: #6a0202; color: #f5ede0; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.escort-category-section {
  background: #0a0202; padding: 90px 0;
  position: relative;
}
.escort-category-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.cat-heading {
  font-family: 'Cormorant Garamond', serif;
  color: #f5ede0; font-weight: 700; font-size: 44px;
  text-align: center; margin-bottom: 52px; line-height: 1.15;
}
.cat-heading span { color: #c9a84c; font-style: italic; }

/* CATEGORY CARD — polaroid stack look */
.cat-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,.1);
  cursor: pointer; background: #130303;
  transition: border-color .3s, transform .3s;
}
.cat-card:hover { border-color: rgba(201,168,76,.45); transform: translateY(-4px); }
.cat-card img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: .5s ease;
  filter: brightness(.75) saturate(.6) sepia(.2);
}
.cat-card:hover img { transform: scale(1.1); filter: brightness(.95) saturate(1); }
.cat-title {
  padding: 12px 14px;
  font-size: 11.5px; font-weight: 700;
  color: #c9a84c; background: #130303;
  letter-spacing: 1px; text-transform: uppercase;
  border-top: 1px solid rgba(201,168,76,.1);
  text-align: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: #0d0303; padding: 90px 0;
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  text-align: center; color: #f5ede0;
  font-size: 44px; font-weight: 700;
  margin-bottom: 52px; line-height: 1.15;
}
.faq-title span { color: #c9a84c; font-style: italic; }

.faq-box {
  max-width: 800px; margin: 0 auto 2px;
  background: transparent;
  border-bottom: 1px solid rgba(201,168,76,.1);
  overflow: hidden; transition: .3s;
}
.faq-box:hover { border-color: rgba(201,168,76,.3); }
.faq-question {
  width: 100%; padding: 22px 20px;
  border: none; background: none;
  color: #f5ede0; text-align: left;
  font-size: 16px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; position: relative;
  transition: color .3s;
  letter-spacing: .3px;
}
.faq-question::after {
  content: '+'; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; color: #c9a84c;
  font-weight: 300; transition: .3s;
}
.faq-box.active .faq-question { color: #c9a84c; }
.faq-box.active .faq-question::after { content: '−'; transform: translateY(-50%) rotate(0deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 20px; color: #8a7a6a;
  transition: max-height .4s ease, padding .3s;
  font-size: 15px; line-height: 1.75;
}
.faq-box.active .faq-answer { max-height: 200px; padding: 6px 20px 24px; }

/* =============================================
   LOCATIONS
   ============================================= */
.locations-section {
  background: #0a0202; padding: 90px 0;
  position: relative;
}
.locations-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.locations-container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.locations-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 700;
  color: #f5ede0; margin-bottom: 52px; text-align: center;
}
.locations-title span { color: #c9a84c; font-style: italic; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 2px;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.06);
}
.loc-btn {
  display: block; padding: 13px 10px;
  text-align: center; background: #0a0202;
  font-size: 12.5px; font-weight: 500;
  color: #8a7a6a; letter-spacing: .8px;
  text-transform: uppercase; border: none;
  transition: .3s ease; position: relative; overflow: hidden;
}
.loc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,2,2,.6), rgba(61,1,1,.9));
  opacity: 0; transition: opacity .3s;
}
.loc-btn span { position: relative; z-index: 1; }
.loc-btn:hover::before { opacity: 1; }
.loc-btn:hover { color: #c9a84c; }

/* =============================================
   TAGS
   ============================================= */
.tags-section { background: #0d0303; padding: 60px 0; }
.tags-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  color: #c9a84c; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.tags-title i { font-size: 18px; color: rgba(201,168,76,.5); }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-item {
  padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  background: rgba(106,2,2,.15);
  border: 1px solid rgba(201,168,76,.12);
  color: #8a7a6a; cursor: default; transition: .25s;
}
.tag-item:hover {
  background: rgba(106,2,2,.5);
  border-color: rgba(201,168,76,.4); color: #c9a84c;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-wrapper {
  background: #070101;
  border-top: 1px solid rgba(201,168,76,.12);
}
.top-footer-bar {
  padding: 32px 20px 28px; text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.top-footer-bar::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
.top-footer-links { margin: 0; }
.top-footer-links a {
  color: #6a5a4a; text-decoration: none;
  margin: 0 14px; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .3s; display: inline-block;
}
.top-footer-links a:hover { color: #c9a84c; }
.bottom-footer { padding: 20px 0; text-align: center; }
.footer-copy {
  color: #6a5a4a; font-size: 12px;
  letter-spacing: .5px;
}

/* =============================================
   FIXED CALL BAR
   ============================================= */
.nowcalling {
  display: block; position: fixed;
  bottom: 0; width: 100%; z-index: 9999;
}
.lcol, .rcol { float: left; width: 50%; }
.lcol a, .rcol a {
  display: block; padding: 15px 0;
  text-align: center; color: #f5ede0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  transition: opacity .25s;
}
.lcol a:hover, .rcol a:hover { opacity: .8; }
.lcol { background: #6a0202; border-right: 1px solid rgba(201,168,76,.2); }
.rcol { background: #130303; }
.rcol a { color: #c9a84c; }

/* =============================================
   COOKIE BAR
   ============================================= */
.cookie-bar {
  position: fixed; bottom: 52px; left: 50%;
  transform: translateX(-50%);
  background: #130303;
  padding: 16px 22px;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; gap: 18px;
  z-index: 7777; max-width: 700px;
  width: calc(100% - 24px);
  animation: cookieSlide .5s ease;
}
.cookie-bar p { margin: 0; font-size: 13px; color: #8a7a6a; }
.cookie-bar button {
  background: #6a0202; border: 1px solid #8b0000;
  color: #f5ede0; padding: 9px 22px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: .25s; white-space: nowrap;
}
.cookie-bar button:hover { background: transparent; border-color: #c9a84c; color: #c9a84c; }
@keyframes cookieSlide {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* =============================================
   AGE MODAL
   ============================================= */
body.age-popup-active .fixed-ui { display: none !important; }
body.age-popup-active { overflow: hidden; height: 100vh; }
.age-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.02);
  backdrop-filter: blur(12px);
}
.age-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-modal, .age-overlay { display: none; }
.age-modal-content {
  background: #130303;
  border: 1px solid rgba(201,168,76,.25);
  max-width: 440px; width: 92%;
  padding: 44px 32px; text-align: center;
  color: #f5ede0;
  animation: popupZoom .35s ease;
  box-shadow: 0 0 80px rgba(106,2,2,.5);
}
@keyframes popupZoom {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.age-modal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: #c9a84c;
  margin-bottom: 16px; letter-spacing: 1px;
}
.age-modal-content p { font-size: 14px; line-height: 1.75; color: #9a8a7a; margin-bottom: 8px; }
.disclaimer {
  font-size: 12px; color: #6a5a4a;
  border-top: 1px solid rgba(201,168,76,.12);
  padding-top: 16px; margin: 16px 0 24px;
}
.age-buttons { display: flex; gap: 12px; }
.age-buttons a, .age-buttons button {
  flex: 1; padding: 14px 0;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-align: center; transition: .25s; border: 1px solid;
}
.btn-yes {
  background: #6a0202; border-color: #6a0202; color: #f5ede0;
}
.btn-yes:hover { background: transparent; border-color: #c9a84c; color: #c9a84c; }
.btn-no {
  background: transparent; border-color: rgba(201,168,76,.25);
  color: #8a7a6a; text-decoration: none;
}
.btn-no:hover { border-color: #c9a84c; color: #c9a84c; }

/* =============================================
   FLOATING ICONS
   ============================================= */
.floating-icon { position: fixed; right: 26px; width: 52px; height: 52px; z-index: 999999; }
.floating-icon a {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,.2);
  transition: .25s; box-shadow: 0 6px 20px rgba(7,1,1,.5);
}
.floating-icon a:hover { transform: translateY(-3px); border-color: #c9a84c; }
.floating-icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.whatsapp-icon { bottom: 185px; }
.whatsapp-icon a { background: #130303; }
.call-icon { bottom: 112px; }
.call-icon a { background: #6a0202; }
.telegram-icon { bottom: 42px; }
.telegram-icon a { background: rgba(201,168,76,.15); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .adult-row { grid-template-columns: 1fr; gap: 50px; }
  .adult-cta { justify-content: center; }
  .adult-content h2::after { margin: 14px auto 0; }
  .adult-image::before, .adult-image::after { display: none; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .main-heading { font-size: 30px; }
  .hero-video-wrap { height: 45vh; }
  .video-card { width: 94%; }
  .video-bg { display: none; }
  .escort-img { width: 100%; min-width: 100%; height: 240px; }
  .escort-img img { border-radius: 0; }
  .cta-wrap { flex-direction: row; max-width: 100%; }
  .call-btn, .whatsapp-btn { width: 50%; font-size: 12px; }
  .escort-action { border-top: 1px solid rgba(201,168,76,.08); border-left: none; }
  .escort-card { flex-direction: column; }
  .listings-title h2 { font-size: 32px; }
  .listings-wrap { gap: 1px; }
  .escort-title { font-size: 28px; }
  .adult-content { padding: 0; }
  .adult-container { padding: 0 24px; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-title, .faq-title, .cat-heading { font-size: 32px; }
  .tags-title { font-size: 22px; }
  .top-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 4px; }
  .top-footer-links a { margin: 4px 8px; }
  .cookie-bar { left: 12px; right: 12px; transform: none; flex-direction: column; gap: 10px; text-align: center; }
  .cookie-bar button { width: 100%; }
  .service-list, .escort-content-section ul { grid-template-columns: 1fr 1fr; }
  .escort-container { padding: 0 20px; }
  .navbar-toggler { color: #c9a84c; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .floating-icon { right: 8px; width: 46px; height: 46px; }
  .floating-icon img { width: 18px; height: 18px; }
  .whatsapp-icon { bottom: 175px; }
  .call-icon { bottom: 105px; }
  .age-buttons { flex-direction: column; }
  .service-list, .escort-content-section ul { grid-template-columns: 1fr; }
  .listing-img img { height: 260px; }
}
@media (min-width: 992px) { .mobile-only { display: none !important; } }

/* =============================================
   TARGETED FIXES v3
   ============================================= */

/* 1. HERO — Simple, clean, minimal */
.hero {
  position: relative;
  min-height: 70vh;
  padding-top: 64px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0a0202;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.25) saturate(.5);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,2,2,.5) 0%, rgba(106,2,2,.45) 50%, rgba(10,2,2,.95) 100%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; z-index: 2;
  background: linear-gradient(to bottom, transparent, #0a0202);
}
.hero-inner {
  position: relative; z-index: 3;
  text-align: center;
  padding: 50px 20px 60px;
  max-width: 820px; margin: 0 auto;
}
/* Remove ornamental pseudo-element */
.hero-inner::before { display: none; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 700;
  line-height: 1.15; margin-bottom: 20px;
  color: #f5ede0;
}
.hero h1 a { color: #c9a84c; }
.hero h1 span { color: #e8b4b8; font-style: italic; }
.hero-select-subtitle {
  font-size: 11px; font-weight: 600;
  color: rgba(201,168,76,.7);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-city-select {
  background: rgba(10,2,2,.7);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 3px;
}
.hero p { font-size: 14px; color: rgba(245,237,224,.45); margin-top: 16px; }

/* 2. PROFILE SECTION — Cards with gap */
.profile-list-section { padding: 80px 0; }
.profile-list-section .container { max-width: 1100px; }
.escort-card {
  display: flex;
  background: #130303;
  margin: 0 auto 16px;         /* GAP between cards */
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 6px;
  overflow: hidden;
  max-width: 1100px;
  transition: border-color .3s, box-shadow .3s;
}
.escort-card:hover {
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 8px 40px rgba(106,2,2,.35);
  background: #180404;
}
/* Make sure row fills card */
.escort-card .row { width: 100%; margin: 0; flex: 1; }

/* 3. FIRST 4 ADULT FEATURE SECTIONS — new bold split layout */
/* Section 1 — dark maroon bg, large image left, content right */
.adult-feature-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.adult-feature-section.alt { padding: 0; }

.adult-container { max-width: 100%; margin: 0; padding: 0; }

.adult-row {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}
.adult-feature-section.alt .adult-row {
  grid-template-columns: 55% 45%;
}

/* Image fills full height */
.adult-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.adult-image::before, .adult-image::after { display: none; }
.adult-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85) saturate(.75);
  transition: transform .6s ease, filter .4s ease;
}
.adult-image:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
/* Gold vertical border between image and content */
.adult-image::after {
  display: block !important;
  content: '';
  position: absolute; top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, transparent, #c9a84c 30%, #6a0202 70%, transparent);
  z-index: 2;
}
.adult-feature-section.alt .adult-image::after {
  right: auto; left: 0;
}

/* Content area */
.adult-content, .adult-content.alt {
  padding: 60px 56px;
  background: #0d0303;
  display: flex; flex-direction: column; justify-content: center;
}
.adult-feature-section.alt .adult-content.alt {
  background: #0a0202;
  order: -1;
}
.adult-content h2, .adult-content.alt h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  line-height: 1.25; margin-bottom: 20px;
  color: #f5ede0; border: none; padding: 0;
}
.adult-content h2::after, .adult-content.alt h2::after {
  content: '';
  display: block; width: 48px; height: 2px; margin-top: 16px;
  background: linear-gradient(90deg, #6a0202, #c9a84c);
}
.adult-content.alt h2 { color: #e8b4b8; }
.adult-content.alt h2::after { background: linear-gradient(90deg, #c9a84c, #6a0202); }
.adult-content p { font-size: 15px; line-height: 1.85; color: #b8a898; margin-bottom: 14px; }

/* Section number badge */
.adult-feature-section .adult-content::before {
  content: '01';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700;
  color: rgba(201,168,76,.07);
  line-height: 1; margin-bottom: -20px;
  display: block;
}
.adult-feature-section.alt .adult-content.alt::before { content: '02'; }
/* For 3rd and 4th sections later in page */
.adult-feature-section:nth-of-type(3) .adult-content::before { content: '03'; }
.adult-feature-section:nth-of-type(4) .adult-content.alt::before { content: '04'; }

/* 4. FAQ — full container width */
.faq-section { padding: 80px 0; }
.faq-section .container {
  max-width: 100%;
  padding: 0 40px;
}
.faq-box {
  max-width: 100%;
  margin: 0 0 2px;
  border-bottom: 1px solid rgba(201,168,76,.1);
  border-radius: 0;
  background: transparent;
}
.faq-box:hover { background: rgba(106,2,2,.06); }
.faq-question { padding: 22px 24px; font-size: 15.5px; }
.faq-question::after { right: 24px; }
.faq-answer { padding: 0 24px; }
.faq-box.active .faq-answer { padding: 6px 24px 22px; }

/* 5. CONTENT SECTIONS — 100% width container */
.escort-content-section { padding: 80px 0; }
.escort-container {
  max-width: 100%;
  padding: 0 60px;
}
.escort-title { font-size: 34px; }

/* 6. LOCATIONS — 6 per row (6-column grid) */
.locations-section { padding: 80px 0; }
.locations-container { max-width: 100%; padding: 0 40px; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: transparent;
  border: none;
}
.loc-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 10px;
  text-align: center;
  background: #130303;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 4px;
  font-size: 12px; font-weight: 500;
  color: #8a7a6a;
  letter-spacing: .6px; text-transform: uppercase;
  transition: .3s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.loc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,2,2,.7), rgba(61,1,1,.95));
  opacity: 0; transition: opacity .3s;
}
.loc-btn span { position: relative; z-index: 1; }
.loc-btn:hover::before { opacity: 1; }
.loc-btn:hover { color: #c9a84c; border-color: rgba(201,168,76,.35); }

/* =============================================
   RESPONSIVE for v3 fixes
   ============================================= */
@media (max-width: 1200px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
  .escort-container { padding: 0 40px; }
}
@media (max-width: 992px) {
  .adult-row,
  .adult-feature-section.alt .adult-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .adult-image { min-height: 320px; }
  .adult-image::after { display: none !important; }
  .adult-feature-section.alt .adult-content.alt { order: 0; }
  .adult-content, .adult-content.alt { padding: 44px 36px; }
  .adult-content::before, .adult-content.alt::before { font-size: 60px; }
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-section .container { padding: 0 24px; }
  .escort-container { padding: 0 24px; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero { min-height: 60vh; }
  .adult-content, .adult-content.alt { padding: 36px 24px; }
  .adult-content h2, .adult-content.alt h2 { font-size: 28px; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-section .container { padding: 0 16px; }
  .escort-container { padding: 0 16px; }
  .escort-card { border-radius: 4px; margin-bottom: 12px; }
}
@media (max-width: 576px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  .adult-content::before { display: none; }
}

/* ---- FINAL OVERRIDES: adult-row direct in section ---- */
.adult-feature-section > .adult-row {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 500px;
  gap: 0;
  align-items: stretch;
  width: 100%;
}
.adult-feature-section.alt > .adult-row {
  grid-template-columns: 55% 45%;
}
/* Hide old adult-container max-width restriction */
.adult-feature-section > .adult-row .adult-content,
.adult-feature-section > .adult-row .adult-content.alt {
  padding: 60px 56px;
}
@media (max-width: 992px) {
  .adult-feature-section > .adult-row,
  .adult-feature-section.alt > .adult-row {
    grid-template-columns: 1fr;
  }
  .adult-feature-section > .adult-row .adult-content,
  .adult-feature-section > .adult-row .adult-content.alt {
    padding: 40px 28px;
  }
}

/* =============================================
   V3 PROFILE CARDS FINAL FIX — Image ref style
   ============================================= */

/* Profile list wrapper — 2 column grid */
.profile-list-section { padding: 70px 0; background: #0a0202; }
.profile-list-section .container {
  max-width: 1200px;
  padding: 0 24px;
}

/* 2-column grid for escort cards */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* NEW CARD STYLE — clean, minimal shadow, clear gap */
.escort-card {
  display: flex !important;
  flex-direction: row;
  background: #130303;
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 !important;               /* remove old margin, grid handles gap */
  box-shadow: 0 2px 12px rgba(0,0,0,.35); /* very light shadow */
  transition: border-color .25s, box-shadow .25s;
  min-height: 200px;
}
.escort-card:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 4px 20px rgba(106,2,2,.25); /* still light on hover */
}

/* Image column */
.escort-img {
  width: 170px !important;
  min-width: 170px !important;
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.escort-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transition: transform .45s ease;
  border-radius: 0;
  border: none;
  filter: none;
}
.escort-card:hover .escort-img img { transform: scale(1.05); }

/* Online badge */
.online-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(10,2,2,.8);
  border: 1px solid #2d7a20;
  color: #4caf50;
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 3px;
  letter-spacing: .6px; text-transform: uppercase;
  z-index: 5;
}

/* Text column */
.escort-card .col-md-6 {
  padding: 18px 18px 16px !important;
  display: flex; flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(201,168,76,.08);
  border-right: none;
  flex: 1;
}
.escort-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  color: #f5ede0; line-height: 1.3;
  margin-bottom: 8px;
}
.escort-card .desc {
  font-size: 13px; color: #8a7a6a;
  line-height: 1.65; margin-bottom: 12px;
}
.escort-card .tag {
  display: inline-block;
  padding: 3px 9px; margin: 2px 3px 2px 0;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  border: 1px solid rgba(106,2,2,.5);
  color: #e8b4b8; background: rgba(106,2,2,.2);
  border-radius: 3px;
}
.escort-card .tag.age {
  border-color: rgba(201,168,76,.4);
  color: #c9a84c; background: rgba(201,168,76,.08);
}

/* CTA column */
.escort-card .escort-action {
  width: 140px; min-width: 140px;
  background: rgba(10,2,2,.5);
  border-left: 1px solid rgba(201,168,76,.08);
  display: flex; align-items: center;
  justify-content: center; padding: 14px !important;
}
.escort-card .cta-wrap {
  width: 100%; max-width: 120px;
  display: flex; flex-direction: column; gap: 8px;
}
.escort-card .call-btn,
.escort-card .whatsapp-btn {
  padding: 10px 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center; border: 1px solid;
  border-radius: 3px; transition: .22s;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.escort-card .call-btn {
  background: #6a0202; border-color: #6a0202; color: #f5ede0;
  box-shadow: none;
}
.escort-card .call-btn:hover {
  background: transparent; border-color: #c9a84c; color: #c9a84c;
}
.escort-card .whatsapp-btn {
  background: transparent; border-color: rgba(201,168,76,.3);
  color: #c9a84c;
}
.escort-card .whatsapp-btn:hover {
  background: rgba(201,168,76,.1); border-color: #c9a84c;
}

/* Responsive */
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .escort-img { width: 130px !important; min-width: 130px !important; height: 180px; }
  .escort-card .escort-action { width: 110px; min-width: 110px; padding: 10px !important; }
  .escort-card .title { font-size: 15px; }
}

/* =============================================
   PROFILE CARDS — IMAGE 1 STYLE (v3 final fix)
   4 per row, image top, info bottom, clean gap
   ============================================= */

.profile-list-section {
  background: #0a0202;
  padding: 80px 0 90px;
}
.profile-list-section .container {
  max-width: 1240px;
  padding: 0 28px;
}

/* 4-column grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card */
.pc-card {
  background: #130303;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.pc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.38);
  box-shadow: 0 6px 24px rgba(106,2,2,.22);
}

/* Image area */
.pc-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
  filter: brightness(.92) saturate(.88);
  transition: transform .45s ease, filter .35s ease;
}
.pc-card:hover .pc-img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* Bottom gradient on image */
.pc-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to bottom, transparent, rgba(10,2,2,.7));
  pointer-events: none;
}

/* Online badge */
.pc-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(7,1,1,.82);
  border: 1px solid #2a7a1a;
  color: #4cbe30;
  font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 3px;
  letter-spacing: .8px; text-transform: uppercase;
  z-index: 5;
}

/* Card body */
.pc-body {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; flex: 1;
  border-top: 1px solid rgba(201,168,76,.08);
}

/* Name */
.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 700;
  color: #f5ede0; margin-bottom: 8px;
  letter-spacing: .3px;
}

/* Tags row */
.pc-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 10px;
}
.pc-tag {
  display: inline-block;
  padding: 3px 9px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 3px;
  background: rgba(106,2,2,.28);
  border: 1px solid rgba(106,2,2,.5);
  color: #e8b4b8;
}
.pc-tag.age {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.35);
  color: #c9a84c;
}
.pc-tag.loc {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.2);
  color: rgba(201,168,76,.7);
  font-size: 9.5px;
}

/* Short desc */
.pc-desc {
  font-size: 12.5px; color: #6a5a4a;
  line-height: 1.6; margin-bottom: 14px;
  flex: 1;
}

/* Buttons */
.pc-btns {
  display: flex; gap: 8px;
}
.pc-btn {
  flex: 1; padding: 10px 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center; border: 1px solid;
  border-radius: 3px; transition: .22s;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}
.pc-btn.call {
  background: #6a0202; border-color: #6a0202;
  color: #f5ede0;
}
.pc-btn.call:hover {
  background: transparent; border-color: #c9a84c; color: #c9a84c;
}
.pc-btn.whatsapp {
  background: transparent;
  border-color: rgba(201,168,76,.3); color: #c9a84c;
}
.pc-btn.whatsapp:hover {
  background: rgba(201,168,76,.1); border-color: #c9a84c;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .pc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-img { height: 230px; }
  .pc-name { font-size: 18px; }
}
@media (max-width: 480px) {
  .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pc-img { height: 200px; }
  .pc-btn { font-size: 10px; padding: 9px 4px; }
}

/* ================================================
   V4 — EXACT FIXES per screenshots
   ================================================ */

/* -----------------------------------------------
   1. PROFILE LIST CARDS — Image 1 exact style
      Left: square image | Right: title+desc+tags+2 buttons
      2-column grid, clean gap, minimal shadow
   ----------------------------------------------- */
.profile-list-section {
  background: #0a0202;
  padding: 70px 0;
}
.profile-list-section .container {
  max-width: 1240px;
  padding: 0 28px;
}
.main-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700;
  color: #c9a84c; text-align: center;
  margin-bottom: 36px; letter-spacing: .3px;
}
.main-heading::before, .main-heading::after { display: none; }

/* 2-col grid wrapper */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Card reset */
.escort-card {
  display: grid !important;
  grid-template-columns: 190px 1fr auto;
  background: #130303 !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 6px !important;
  overflow: hidden;
  margin: 0 !important;
  box-shadow: none !important;   /* NO shadow */
  transition: border-color .25s;
  min-height: 0;
}
.escort-card:hover {
  border-color: rgba(201,168,76,.3) !important;
  box-shadow: none !important;
}

/* Left image */
.escort-img {
  width: 190px !important;
  min-width: 190px !important;
  height: 220px !important;
  overflow: hidden;
  position: relative;
}
.escort-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transition: transform .45s;
  filter: none;
  border-radius: 0;
  border: none;
}
.escort-card:hover .escort-img img { transform: scale(1.06); }

/* Online badge — green pill top-left */
.online-badge {
  position: absolute; top: 8px; left: 8px;
  background: #1a5c15;
  border: none;
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .5px; z-index: 5;
  text-transform: uppercase;
  animation: none;
}

/* Middle content */
.escort-card .col-md-6 {
  padding: 20px 18px !important;
  display: flex; flex-direction: column;
  justify-content: center; gap: 0;
  border: none !important;
}
.escort-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 700;
  color: #f5ede0; line-height: 1.3;
  margin-bottom: 10px;
}
.escort-card .desc {
  font-size: 13px; color: #8a7a6a;
  line-height: 1.65; margin-bottom: 14px;
}
.escort-card .tag {
  display: inline-block;
  padding: 3px 10px; margin: 3px 4px 3px 0;
  font-size: 10px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,.3);
  color: #c9a84c; background: transparent;
  border-radius: 3px;
}
.escort-card .tag.age {
  border-color: rgba(201,168,76,.5);
  color: #c9a84c;
}

/* Right CTA column — vertical stack */
.escort-card .escort-action {
  width: 130px !important;
  min-width: 130px !important;
  background: transparent !important;
  border-left: 1px solid rgba(255,255,255,.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 14px !important;
}
.escort-card .cta-wrap {
  width: 100%;
  display: flex; flex-direction: column; gap: 9px;
  max-width: 110px;
}

/* CALL NOW — red pill with phone icon */
.escort-card .call-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: #6a0202;
  border: none !important;
  border-radius: 5px;
  color: #fff !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  box-shadow: none !important;
  transition: background .2s;
}
.escort-card .call-btn::before {
  content: '📞';
  font-size: 12px;
}
.escort-card .call-btn:hover { background: #8b0000; }

/* WHATSAPP — dark with icon */
.escort-card .whatsapp-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: #1a0a0a;
  border: 1px solid rgba(201,168,76,.2) !important;
  border-radius: 5px;
  color: #c9a84c !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  box-shadow: none !important;
  transition: background .2s;
}
.escort-card .whatsapp-btn::before {
  content: '💬';
  font-size: 12px;
}
.escort-card .whatsapp-btn:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.4) !important;
}

/* -----------------------------------------------
   2. LISTING GRID CARDS (escort-feature-section)
      Image 2 style: proper 16px gap, no shadow
   ----------------------------------------------- */
.listings-wrap {
  max-width: 1240px !important;
  margin: 0 auto;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  background: transparent !important;
  border: none !important;
}
.listing-card {
  background: #130303 !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 6px !important;
  overflow: hidden;
  box-shadow: none !important;
  transition: border-color .25s, transform .25s;
}
.listing-card:hover {
  border-color: rgba(201,168,76,.35) !important;
  transform: translateY(-3px);
  box-shadow: none !important;
}
.listing-img img {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  filter: none;
  transition: transform .45s;
}
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-body {
  padding: 16px 14px 18px;
  background: #130303;
}
.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: #f5ede0; margin-bottom: 8px;
}
.tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.tags span {
  font-size: 10px; padding: 3px 10px;
  background: #6a0202;
  border: none;
  color: #fff; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 3px;
}
.listing-btns {
  display: flex; gap: 8px; margin-top: 10px;
}
.btn-tg {
  flex: 1; padding: 9px 6px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: #6a0202 !important;
  border: none !important; border-radius: 4px;
  color: #fff !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  transition: background .2s;
}
.btn-tg:hover { background: #8b0000 !important; transform: none; }
.btn-wa {
  flex: 1; padding: 9px 6px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: #1a0a0a !important;
  border: 1px solid rgba(201,168,76,.25) !important;
  border-radius: 4px;
  color: #c9a84c !important;
  font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  transition: background .2s;
}
.btn-wa:hover { background: rgba(201,168,76,.08) !important; transform: none; }

/* -----------------------------------------------
   3. CATEGORY SECTION — Image 3 style
      4-col grid, image full, maroon title bar at bottom
      #6a0202 theme
   ----------------------------------------------- */
.escort-category-section {
  background: #0a0202;
  padding: 70px 0;
  position: relative;
}
.escort-category-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.cat-heading {
  font-family: 'Cormorant Garamond', serif;
  color: #f5ede0; font-weight: 700; font-size: 38px;
  text-align: center; margin-bottom: 40px;
  padding-bottom: 0;
}
.cat-heading::after { display: none; }

/* Override Bootstrap row/col with CSS grid */
.escort-category-section .row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 28px;
  max-width: 1240px;
  margin: 0 auto !important;
}
.escort-category-section .col-6,
.escort-category-section .col-md-4,
.escort-category-section .col-lg-3 {
  width: 100% !important;
  padding: 0 !important;
  max-width: 100% !important;
  flex: none !important;
}

/* Cat card — Image 3 exact style */
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #130303;
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: border-color .25s, transform .25s;
  box-shadow: none;
}
.cat-card:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-3px);
}
.cat-card img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  filter: none;
  transition: transform .5s;
}
.cat-card:hover img { transform: scale(1.07); }

/* Title bar — solid #6a0202 background, white uppercase text */
.cat-title {
  position: static !important;  /* NOT absolute overlay */
  padding: 12px 14px;
  background: #6a0202;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.15);
}

/* Container padding */
.escort-category-section .container {
  max-width: 1240px;
  padding: 0 28px;
}

/* -----------------------------------------------
   RESPONSIVE
   ----------------------------------------------- */
@media (max-width: 1100px) {
  .listings-wrap { grid-template-columns: repeat(3, 1fr) !important; }
  .escort-category-section .row { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr !important; }
  .listings-wrap { grid-template-columns: repeat(2, 1fr) !important; }
  .escort-category-section .row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .escort-card { grid-template-columns: 140px 1fr !important; }
  .escort-card .escort-action { display: none !important; }
  .listings-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .escort-category-section .row { grid-template-columns: repeat(2, 1fr) !important; padding: 0 16px; }
  .cat-card img { height: 160px; }
}

/* ================================================
   V5 — PROFILE LIST SECTION (Image 1 style)
   4-col grid: image top full, name+tags+desc+btns bottom
   ================================================ */

.profile-list-section {
  background: #0a0202;
  padding: 70px 0 80px;
  position: relative;
}
.profile-list-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #6a0202 30%, #c9a84c 50%, #6a0202 70%, transparent);
}
.pls-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.pls-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700;
  color: #c9a84c; text-align: center;
  margin-bottom: 40px; line-height: 1.3;
}

/* 4-column grid */
.pls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card */
.pls-card {
  background: #130303;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
  box-shadow: none;
}
.pls-card:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}

/* Image — full width top */
.pls-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 280px;
  flex-shrink: 0;
}
.pls-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
  transition: transform .5s ease;
}
.pls-card:hover .pls-img img { transform: scale(1.06); }

/* Online badge */
.pls-badge {
  position: absolute; top: 10px; left: 10px;
  background: #1a5c15;
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .5px; text-transform: uppercase;
  z-index: 3;
}

/* Body */
.pls-body {
  padding: 16px 14px 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.pls-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: #f5ede0; margin-bottom: 10px;
  line-height: 1.2;
}

/* Tags row */
.pls-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 10px;
}
.pls-tag {
  padding: 3px 9px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  background: #6a0202;
  color: #fff; border-radius: 3px;
  border: none;
}
.pls-tag.loc {
  background: transparent;
  border: 1px solid rgba(201,168,76,.35);
  color: #c9a84c;
}

/* Description */
.pls-desc {
  font-size: 12.5px; color: #7a6a5a;
  line-height: 1.65; margin-bottom: 14px;
  flex: 1;
}

/* Buttons */
.pls-btns {
  display: flex; gap: 8px; margin-top: auto;
}
.pls-call, .pls-wa {
  flex: 1; padding: 9px 6px;
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 4px; transition: .2s;
  text-decoration: none;
}
.pls-call {
  background: #6a0202; color: #fff !important;
  border: none;
}
.pls-call:hover { background: #8b0000; }
.pls-wa {
  background: #0e0404; color: #c9a84c !important;
  border: 1px solid rgba(201,168,76,.3);
}
.pls-wa:hover { background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.6); }

/* ================================================
   V5 — ESCORT-CARD (Image 2 style — 2col horizontal)
   Image left small, title center-top, desc, location, btns
   ================================================ */

/* Remove old profile-grid */
.profile-grid { display: block !important; }

.escort-card {
  display: flex !important;
  flex-direction: row !important;
  grid-template-columns: unset !important;
  background: #130303 !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  transition: border-color .25s, transform .2s;
  min-height: 200px;
}
.escort-card:hover {
  border-color: rgba(201,168,76,.3) !important;
  transform: translateY(-3px);
  box-shadow: none !important;
}

/* Wrap all escort-cards in 2-col grid via parent */
.escort-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Image — left side, fixed width, full height */
.escort-card .escort-img {
  width: 160px !important;
  min-width: 160px !important;
  height: auto !important;
  min-height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
}
.escort-card .escort-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 15%;
  border-radius: 0; border: none; filter: none;
  transition: transform .5s;
}
.escort-card:hover .escort-img img { transform: scale(1.06); }

.escort-card .online-badge {
  position: absolute; top: 8px; left: 8px;
  background: #1a5c15; border: none;
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .5px; text-transform: uppercase;
  animation: none; z-index: 5;
}

/* Text middle */
.escort-card .col-md-6 {
  padding: 18px 16px !important;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  flex: 1; border: none !important;
}
.escort-card .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  color: #f5ede0; margin-bottom: 6px; line-height: 1.3;
}
.escort-card .desc {
  font-size: 13px; color: #7a6a5a;
  line-height: 1.6; margin-bottom: 10px;
}
.escort-card .tag {
  display: inline-block;
  padding: 3px 9px; margin: 2px 3px 2px 0;
  font-size: 10px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  background: #6a0202; color: #fff !important;
  border: none !important; border-radius: 3px;
}
.escort-card .tag.age {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,.4) !important;
  color: #c9a84c !important;
}

/* CTA right */
.escort-card .escort-action {
  width: 120px !important; min-width: 120px !important;
  background: transparent !important;
  border-left: 1px solid rgba(255,255,255,.06) !important;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 10px !important; gap: 8px;
}
.escort-card .cta-wrap {
  width: 100%; display: flex; flex-direction: column; gap: 8px;
}
.escort-card .call-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 8px;
  background: #6a0202 !important; color: #fff !important;
  border: none !important; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; box-shadow: none !important;
  transition: background .2s;
}
.escort-card .call-btn:hover { background: #8b0000 !important; }
.escort-card .whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 8px;
  background: #0e0404 !important; color: #c9a84c !important;
  border: 1px solid rgba(201,168,76,.3) !important; border-radius: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; box-shadow: none !important;
  transition: background .2s;
}
.escort-card .whatsapp-btn:hover { background: rgba(201,168,76,.08) !important; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .pls-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .pls-grid { grid-template-columns: repeat(2, 1fr); }
  .escort-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pls-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pls-img { height: 200px; }
  .pls-name { font-size: 17px; }
  .escort-card { flex-direction: column !important; }
  .escort-card .escort-img { width: 100% !important; min-width: 100% !important; height: 220px !important; }
  .escort-card .escort-action { width: 100% !important; flex-direction: row !important; border-left: none !important; border-top: 1px solid rgba(255,255,255,.06) !important; padding: 12px !important; }
  .escort-card .cta-wrap { flex-direction: row; }
}

/* ================================================
   V6 FINAL SWAP
   pls-card    = HORIZONTAL (image left, content right) — Image 2 style
   listing-card = VERTICAL (image top, content bottom)  — Image 1 style
   Mobile both: image top, content bottom
   ================================================ */

/* -----------------------------------------------
   PLS-CARD → HORIZONTAL 2-col layout (Image 2)
   ----------------------------------------------- */
.pls-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 18px !important;
}

.pls-card {
  display: grid !important;
  grid-template-columns: 180px 1fr !important;
  grid-template-rows: 1fr !important;
  flex-direction: unset !important;
  background: #130303 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 8px !important;
  overflow: hidden;
  min-height: 210px;
  box-shadow: none !important;
  transition: border-color .25s, transform .22s;
}
.pls-card:hover {
  border-color: rgba(201,168,76,.35) !important;
  transform: translateY(-3px);
}

/* Image — left fixed column, full height */
.pls-img {
  width: 180px !important;
  height: 100% !important;
  min-height: 210px !important;
  position: relative;
  overflow: hidden;
}
.pls-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 15% !important;
  transition: transform .5s ease !important;
  display: block !important;
}
.pls-card:hover .pls-img img { transform: scale(1.06) !important; }

.pls-badge {
  position: absolute; top: 8px; left: 8px;
  background: #1a5c15 !important;
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .5px; text-transform: uppercase;
  z-index: 3;
}

/* Body — right content column */
.pls-body {
  padding: 18px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  flex: 1 !important;
  border-left: 1px solid rgba(255,255,255,.05);
}

.pls-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important; font-weight: 700 !important;
  color: #f5ede0 !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}
.pls-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  margin-bottom: 9px !important;
}
.pls-tag {
  padding: 3px 9px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .7px; text-transform: uppercase;
  background: #6a0202 !important;
  color: #fff !important;
  border-radius: 3px; border: none !important;
}
.pls-tag.loc {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,.35) !important;
  color: #c9a84c !important;
}
.pls-desc {
  font-size: 12.5px !important;
  color: #7a6a5a !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
  flex: 1 !important;
}
.pls-btns {
  display: flex !important;
  gap: 7px !important;
  margin-top: auto !important;
}
.pls-call {
  flex: 1 !important;
  padding: 9px 6px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: 4px !important; font-size: 10.5px !important; font-weight: 700 !important;
  letter-spacing: .8px !important; text-transform: uppercase !important;
  background: #6a0202 !important; color: #fff !important;
  border: none !important; border-radius: 4px !important;
  text-decoration: none !important; transition: background .2s !important;
}
.pls-call:hover { background: #8b0000 !important; }
.pls-wa {
  flex: 1 !important;
  padding: 9px 6px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: 4px !important; font-size: 10.5px !important; font-weight: 700 !important;
  letter-spacing: .8px !important; text-transform: uppercase !important;
  background: #0e0404 !important; color: #c9a84c !important;
  border: 1px solid rgba(201,168,76,.3) !important;
  border-radius: 4px !important; text-decoration: none !important;
  transition: background .2s !important;
}
.pls-wa:hover { background: rgba(201,168,76,.08) !important; }

/* -----------------------------------------------
   LISTING-CARD → VERTICAL image top (Image 1)
   ----------------------------------------------- */
.listings-wrap {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
  background: transparent !important;
  border: none !important;
}
.listing-card {
  display: flex !important;
  flex-direction: column !important;
  background: #130303 !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: none !important;
  transition: border-color .25s, transform .25s;
  height: 100%;
}
.listing-card:hover {
  border-color: rgba(201,168,76,.35) !important;
  transform: translateY(-4px);
  box-shadow: none !important;
}
/* Image — full width top */
.listing-img {
  width: 100%;
  overflow: hidden;
}
.listing-img img {
  width: 100% !important;
  height: 270px !important;
  object-fit: cover !important;
  display: block !important;
  filter: none !important;
  transition: transform .5s ease !important;
}
.listing-card:hover .listing-img img { transform: scale(1.06) !important; }

/* Body — below image */
.listing-body {
  padding: 14px 14px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  background: #130303 !important;
}
.profile-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important; font-weight: 700 !important;
  color: #f5ede0 !important;
  margin-bottom: 8px !important;
}
.tags {
  display: flex !important; flex-wrap: wrap !important;
  gap: 5px !important; margin-bottom: 12px !important;
}
.tags span {
  padding: 3px 9px !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: .7px !important; text-transform: uppercase !important;
  background: #6a0202 !important;
  color: #fff !important; border-radius: 3px !important;
  border: none !important;
}
.listing-btns {
  display: flex !important;
  gap: 7px !important;
  margin-top: auto !important;
}
.btn-tg {
  flex: 1 !important; padding: 9px 6px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: 5px !important; font-size: 10.5px !important; font-weight: 700 !important;
  letter-spacing: .8px !important; text-transform: uppercase !important;
  background: #6a0202 !important; color: #fff !important;
  border: none !important; border-radius: 4px !important;
  transition: background .2s !important; text-decoration: none !important;
}
.btn-tg:hover { background: #8b0000 !important; transform: none !important; }
.btn-wa {
  flex: 1 !important; padding: 9px 6px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  gap: 5px !important; font-size: 10.5px !important; font-weight: 700 !important;
  letter-spacing: .8px !important; text-transform: uppercase !important;
  background: #0e0404 !important; color: #c9a84c !important;
  border: 1px solid rgba(201,168,76,.3) !important; border-radius: 4px !important;
  transition: background .2s !important; text-decoration: none !important;
}
.btn-wa:hover { background: rgba(201,168,76,.08) !important; transform: none !important; }

/* -----------------------------------------------
   MOBILE — both sections: image top, content bottom
   ----------------------------------------------- */
@media (max-width: 900px) {
  .pls-grid { grid-template-columns: 1fr !important; }
  .listings-wrap { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  /* pls-card: image top, body below */
  .pls-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }
  .pls-img {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }
  .pls-body {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
  }
  /* listing-card stays vertical */
  .listings-wrap { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .listing-img img { height: 190px !important; }
}

@media (max-width: 1100px) {
  .listings-wrap { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ================================================
   MOBILE FIX — pls-card & listing-card
   ek card per row, image upar content neeche
   ================================================ */

/* Tablet (900px se neeche) */
@media (max-width: 900px) {
  /* pls-grid: 1 column */
  .pls-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  /* pls-card: image left 140px, content right — thoda compact */
  .pls-card {
    grid-template-columns: 140px 1fr !important;
    min-height: 180px !important;
  }
  .pls-img {
    width: 140px !important;
    min-height: 180px !important;
  }
  /* listings: 2 col */
  .listings-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 16px !important;
  }
}

/* Mobile (576px se neeche) */
@media (max-width: 576px) {
  .navbar-brand {font-size: 16px;}
  .offcanvas-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;}
  /* pls-grid: 1 column */
  .pls-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  /* pls-card: image top, body bottom — FULL stack */
  .pls-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    min-height: unset !important;
  }
  .pls-img {
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
  }
  .pls-body {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
    padding: 14px 13px !important;
    justify-content: flex-start !important;
  }
  .pls-name {
    font-size: 18px !important;
  }
  /* listings: 1 column on very small */
  .listings-wrap {
    grid-template-columns: 1fr !important;
    padding: 0 12px !important;
    gap: 12px !important;
  }
  .listing-img img {
    height: 220px !important;
  }
}

.adult-content ul li {
    font-size: 15px;
    line-height: 1.85;
    color: #b8a898;
   
}
/* =====================================================
   PAGE SPEED OPTIMIZATIONS — appended to style.css
   (No inline CSS in HTML head — all CSS stays here)
   ===================================================== */

/* Hero image — GPU composite layer for fastest LCP paint */
.hero-img {
  will-change: transform;
}

/* Font display swap — eliminates FOIT (Flash of Invisible Text) */
@font-face { font-display: swap; }

/* content-visibility: auto — browser skips rendering
   off-screen sections entirely until user scrolls to them.
   contain-intrinsic-size prevents layout shift. */
.escort-feature-section,
.escort-content-section,
.adult-feature-section,
.locations-section,
.faq-section,
.footer-wrapper,
.tags-section,
.escort-category-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* Prevent layout shift on lazy-loaded images */
.listing-img,
.pls-img,
.adult-image,
.cat-card {
  overflow: hidden;
}
.listing-img img,
.pls-img img,
.adult-image img,
.cat-card img {
  display: block;
  width: 100%;
}

/* Video sections — skip off-screen render */
.hero-video-wrap {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
