/* =========================================
   GLOBAL STYLES & TYPOGRAPHY
========================================= */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8fafc; /* Light clean background */
  color: #334155; /* Standard dark text for readability */
}

body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  color: #853008; /* Official Blue */
  font-weight: 600;
  transition: color 0.2s ease;
}

a:hover {
  color: #cf011d;
}

/* =========================================
   NAVBAR
========================================= */
.navbar.fixed-top {
  left: 0;
  right: 0;
  width: 100%;
}

.navbar {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: #af1e1e !important; /* Deep Official Blue */
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #475569 !important;
  padding: 10px 15px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #853008 !important;
}

.nav-btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-btn.btn-call {
  border: 1.5px solid #dc2626; /* Official Red for call */
  color: #dc2626;
  background: transparent;
}

.nav-btn.btn-call:hover {
  background: #dc2626;
  color: #fff;
}

.nav-btn.btn-whatsapp {
  background: #25D366; /* Official WhatsApp Green */
  color: #ffffff;
}

.nav-btn.btn-whatsapp:hover {
  background: #1ebe57;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  min-height: 70vh;
  padding-top: 90px;
  overflow: hidden;
  background: #e2e8f0; /* Fallback */
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  border-left: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero h1 span {
  color: #93c5fd; /* Light Blue highlight */
}

.hero-select-box {
  max-width: 920px;
  margin: 25px auto;
  text-align: center;
}

.hero-select-subtitle {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-select-wrapper {
  position: relative;
}

.hero-city-select {
  width: 100%;
  padding: 16px 48px 16px 22px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 16px;
  outline: none;
  appearance: none;
}

.hero-city-select option {
  color: #333;
  background: #fff;
}

.hero-city-select:focus,
.hero-city-select:hover {
  border-color: #93c5fd;
  background: rgba(255, 255, 255, 0.25);
}

.hero-select-wrapper::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.hero-select-wrapper::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-35%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.hero p {
  margin-top: 15px;
  font-size: 14px;
  color: #e2e8f0;
}

.hero p a {
  color: #93c5fd;
  text-decoration: none;
}

/* =========================================
   OFFCANVAS / MOBILE MENU
========================================= */
.offcanvas {
  width: 100%;
  background: #ffffff;
}

.offcanvas-header {
  border-bottom: 1px solid #e2e8f0;
}

.offcanvas-title {
  font-size: 20px;
  font-weight: 600;
  color: #bf0909;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 2px 0;
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu .nav-link {
  color: #334155 !important;
}

.mobile-menu .nav-link:hover {
  color: #853008 !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
    padding-top: 100px;
  }

  .btn-close {
    filter: invert(0);
    opacity: 1;
  }

  .navbar-toggler {
    color: #bf0909;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-select-box {
    margin: 15px auto;
  }

  .hero-city-select {
    padding: 14px 40px 14px 16px;
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}

/* =========================================
   HERO VIDEO WRAP
========================================= */
.hero-video-wrap {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(35px) brightness(0.9);
  transform: scale(1.2);
}

.video-card {
  position: relative;
  width: 70%;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-video-wrap {
    height: 40vh;
  }

  .video-card {
    width: 92%;
    border-radius: 14px;
  }

  .video-bg {
    display: none;
  }
}

/* =========================================
   PROFILE LIST SECTION
========================================= */
.profile-list-section {
  background: #f8d7da40;
  padding: 20px 20px;
  font-family: system-ui;
}

.main-heading {
  text-align: center;
  color: #bf0909;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 30px;
  border-left: none;
}

.escort-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  border-left: 4px solid #853008;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.escort-img {
  width: 260px;
  min-width: 260px;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.escort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.online-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bs-red);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 5;
  pointer-events: none;
}

.title {
  color: #bf0909;
  font-weight: 700;
  font-size: 21px;
  line-height: 27px;
}

.desc {
  font-size: 15px;
  color: #64748b;
}

.tag {
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-right: 6px;
  color: #853008;
  border: 1px solid #bfdbfe;
}

.tag.age {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.escort-action {
  background: #f8fafc;
}

.cta-wrap {
  width: 100%;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-btn,
.whatsapp-btn {
  padding: 13px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.call-btn {
  background: #59128f;
}

.call-btn:hover {
  background: #740808;
  color: #ffffff;
}

.whatsapp-btn {
  background: #dc3545;
  color: #ffffff;
}

.whatsapp-btn:hover {
  background: #475569;
  color: #ffffff;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 24px;
  }

  .escort-img {
    width: 100%;
    min-width: 100%;
    height: 260px;
  }

  .escort-img img {
    border-radius: 0;
  }

  .cta-wrap {
    flex-direction: row;
    max-width: 100%;
  }

  .call-btn,
  .whatsapp-btn {
    width: 50%;
    font-size: 14px;
  }

  .escort-action {
    border-top: 1px solid #e2e8f0;
  }
}

/* =========================================
   ADULT FEATURE SECTION
========================================= */
.adult-feature-section a,
.adult-feature-section.alt a,
.escort-content-section a {
  color: #853008;
}

.adult-feature-section b,
.adult-feature-section.alt b,
.escort-content-section b {
  color: #bf0909;
}

.adult-feature-section {
  background: #f8fafc;
  padding: 20px 20px;
}

.adult-feature-section.alt {
  background: #ffffff;
}

.adult-container {
  max-width: 1200px;
  margin: auto;
}

.adult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.adult-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.adult-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.adult-content.alt {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.adult-content h2 {
  font-size: 32px;
  color: #bf0909;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.25;
  border-left: none;
}

.adult-content.alt h2 {
  color: #bf0909;
}

.adult-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 15px;
}

.adult-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.adult-btn-call {
  background: #dc268b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.adult-btn-call:hover {
  background: #b91c1c;
  color: #fff;
}

.adult-btn-wa {
  background: #853008;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.adult-btn-wa:hover {
  background: #1e4fbe;
  color: #fff;
}

@media (max-width: 992px) {
  .adult-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adult-cta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .adult-content {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .adult-content {
    padding: 25px 20px;
  }
}

/* =========================================
   ESCORT FEATURE SECTION (LISTINGS)
========================================= */
.escort-feature-section {
  background: #e9ecef63;
  padding: 50px 0;
}

.listings-title {
  text-align: center;
  margin-bottom: 30px;
}

.listings-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #bf0909;
  margin-bottom: 10px;
  border-left: none;
}

.listings-title p {
  font-size: 16px;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.listings-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.listing-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.listing-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.listing-body {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: #bf0909;
  margin-bottom: 8px;
}

.tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 30px;
  background: #eff6ff;
  color: #853008;
  font-weight: 600;
  border: 1px solid #bfdbfe;
}

.listing-body::after {
  content: '';
  flex: 1;
}

.listing-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.listing-btns a {
  flex: 1;
  max-width: 135px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-tg {
  background: #0e5809; /* Official Telegram */
  color: #fff;
}

.btn-tg:hover {
  background: #61660f;
  color: #fff;
}

.btn-wa {
  background: #d325b6; /* Official WhatsApp */
  color: #fff;
}

.btn-wa:hover {
  background: #be3c1e;
  color: #fff;
}

.listing-btns i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .listing-img img {
    height: 220px;
  }

  .listings-title h2 {
    font-size: 28px;
  }

  .listing-body {
    padding: 15px 10px 20px;
  }

  .listing-btns a {
    max-width: 100%;
    height: 42px;
    font-size: 14px;
  }

  .listing-card {
    margin: 0px 10px;
  }
}

/* =========================================
   ESCORT CONTENT SECTION
========================================= */
.escort-content-section {
  background: #f8fafc;
  padding: 20px 20px;
  color: #475569;
}

.escort-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.escort-title {
  font-size: 32px;
  font-weight: 800;
  color: #bf0909;
  margin-bottom: 15px;
  text-align: left;
  letter-spacing: 0.4px;
  border-left: none;
}

.escort-subtitle {
  font-size: 22px;
  margin: 25px 0 12px;
  color: #bf0909;
  font-weight: 700;
}

.escort-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #475569;
}

.escort-points {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}

.escort-points li {
  padding: 6px 0;
  font-size: 15px;
  color: #334155;
  position: relative;
  padding-left: 25px;
}

.escort-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #25D366;
  font-weight: 700;
}

.escort-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.escort-btn-call {
  background: #dc2626;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.escort-btn-call:hover {
  background: #b91c1c;
}

.escort-btn-wa {
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
}

.escort-btn-wa:hover {
  background: #1ebe57;
}

.escort-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 25px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.escort-table th {
  background: #bf0909;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.escort-table td {
  padding: 12px 16px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  background: #ffffff;
}

.escort-table tr:last-child td {
  border-bottom: none;
}

.escort-table td strong {
  color: #bf0909;
}

@media (max-width: 768px) {
  .escort-container {
    padding: 20px;
  }
  
  .escort-title {
    text-align: center;
    font-size: 28px;
  }

  .escort-subtitle {
    text-align: center;
  }

  .escort-cta {
    justify-content: center;
  }

  .escort-table td,
  .escort-table th {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* =========================================
   LOCATIONS SECTION
========================================= */
.locations-section {
  background: #ffffff;
  padding: 20px 20px;
}

.locations-container {
  max-width: 1300px;
  margin: auto;
}

.locations-title {
  font-size: 32px;
  font-weight: 800;
  color: #bf0909;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.6px;
  border-left: none;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.loc-btn {
  display: block;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.loc-btn:hover {
  background: #853008;
  color: #ffffff;
  border-color: #853008;
}

@media (max-width: 768px) {
  .locations-title {
    font-size: 28px;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   TAGS SECTION
========================================= */
.tags-section {
  background: #f8fafc;
  padding: 40px 20px;
}

.tags-title {
  font-size: 24px;
  font-weight: 700;
  color: #bf0909;
  margin-bottom: 15px;
  border-left: none;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
  cursor: default;
  transition: all 0.2s;
}

.tag-item:hover {
  background: #853008;
  color: #ffffff;
  border-color: #853008;
}

@media (max-width: 768px) {
  .tags-title {
    text-align: center;
    font-size: 21px;
  }

  .tags-wrap {
    justify-content: center;
    gap: 7px;
  }

  .tag-item {
    font-size: 12px;
    padding: 4px 10px;
  }
}

/* =========================================
   ESCORT CATEGORY SECTION
========================================= */
.escort-category-section {
  background: #ffffff;
  padding: 40px 20px;
}

.cat-heading {
  color: #bf0909;
  font-weight: 800;
  font-size: 32px;
  border-left: none;
  margin-bottom: 30px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.cat-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.cat-card:hover img {
  transform: scale(1.05);
}

.cat-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  padding: 20px 20px;
  background: #f8fafc;
}

.faq-title {
  text-align: center;
  color: #bf0909;
  font-size: 32px;
  margin-bottom: 25px;
  border-left: none;
}

.faq-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: #1e293b;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #853008;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-box.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

.faq-box.active .faq-question::after {
  content: "-";
}

/* =========================================
   FOOTER
========================================= */
.footer-wrapper {
  background: #1e293b; /* Sleek Dark Footer for contrast */
}

.top-footer-bar {
  position: relative;
  padding: 25px 10px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-footer-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 280px;
  height: 2px;
  background: #853008;
}

.top-footer-links {
  margin: 0;
}

.top-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  margin: 0 18px;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}

.top-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #853008;
  transition: width 0.2s;
}

.top-footer-links a:hover {
  color: #ffffff;
}

.top-footer-links a:hover::after {
  width: 100%;
}

.bottom-footer {
  padding: 15px 0 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 45px;
}

.footer-copy {
  color: #94a3b8;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.footer-copy span {
  color: #853008;
}

@media (max-width: 768px) {
  .top-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-footer-links a {
    margin: 6px 10px;
    font-size: 14px;
  }
}

/* =========================================
   NOWCALLING FIXED BAR
========================================= */
.nowcalling {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.lcol,
.rcol {
  float: left;
  width: 50%;
}

.lcol a,
.rcol a {
  display: block;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.lcol {
  background: var(--bs-danger-text-emphasis);
}

.rcol {
  background: var(--bs-success-text-emphasis);
}

/* =========================================
   FLOATING ICONS
========================================= */
.floating-icon {
  position: fixed;
  right: 30px;
  width: 56px;
  height: 56px;
  z-index: 999999;
}

.floating-icon a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.floating-icon a:hover {
  transform: scale(1.1);
}

.floating-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.whatsapp-icon {
  bottom: 190px;
}

.whatsapp-icon a {
  background: #25D366;
}

.call-icon {
  bottom: 115px;
}

.call-icon a {
  background: #dc2626;
}

.telegram-icon {
  bottom: 40px;
}

.telegram-icon a {
  background: #0088cc;
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 19px;
    font-weight: 600;
  }

  .floating-icon {
    right: 12px;
    width: 48px;
    height: 48px;
  }

  .floating-icon img {
    width: 22px;
    height: 22px;
  }

  .whatsapp-icon {
    bottom: 170px;
  }

  .call-icon {
    bottom: 105px;
  }

  .telegram-icon {
    bottom: 40px;
  }
}

/* =========================================
   COOKIE BAR
========================================= */
.cookie-bar {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 7777;
  border: 1px solid #e2e8f0;
  max-width: 750px;
  width: calc(100% - 20px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

.cookie-bar button {
  background: #853008;
  border: none;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-bar button:hover {
  background: #1d4ed8;
}

@media (max-width: 768px) {
  .cookie-bar {
    left: 10px;
    right: 10px;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }

  .cookie-bar button {
    width: 100%;
  }
}

/* =========================================
   TABLE SCROLL
========================================= */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  position: relative;
}

.escort-table {
  min-width: 650px;
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.escort-table th {
  background: #bf0909;
  color: #ffffff;
  padding: 14px 12px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #1e3a8a;
  white-space: nowrap;
}

.escort-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
  white-space: nowrap;
}

.table-call-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #b3ebe8;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  transition: background 0.2s;
}

.escort-table a {
  color: #21222a ;
}
.table-call-btn:hover {
  background: #ffd5d5;
}

@media (max-width: 768px) {
  .escort-table {
    min-width: 350px;
  }

  .escort-table td,
  .escort-table th {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* =========================================
   AGE POPUP
========================================= */
body.age-popup-active .fixed-ui {
  display: none !important;
}

body.age-popup-active {
  overflow: hidden;
  height: 100vh;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 9998;
  display: none;
}

.age-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.age-modal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #333;
  max-width: 460px;
  width: 92%;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.age-modal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #bf0909;
  margin-bottom: 12px;
  border-left: none;
}

.age-modal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}

.confirm {
  margin: 12px 0 8px;
  font-weight: 700;
  color: #dc2626;
}

.age-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
  font-size: 14px;
}

.age-modal-content ul li {
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
  color: #475569;
}

.disclaimer {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 18px;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
}

.age-buttons {
  display: flex;
  gap: 12px;
}

.age-buttons a,
.age-buttons button {
  flex: 1;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.btn-yes {
  background: #853008;
  color: #fff;
  border: none;
}

.btn-yes:hover {
  background: #1d4ed8;
}

.btn-no {
  background: #f8fafc;
  color: #475569;
  text-decoration: none;
  border: 1px solid #e2e8f0;
}

.btn-no:hover {
  background: #e2e8f0;
}

@media (max-width: 480px) {
  .age-buttons {
    flex-direction: column;
  }
}

/* =========================================
   NEW CSS / WP STYLE REVERSE LAYOUT
========================================= */
.wp-style-feature.wp-reverse {
    background: #f8fafc; 
}

.wp-reverse .wp-feature-content {
    margin-left: 0;
    margin-right: -50px; 
    border-top: 5px solid #853008; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
}

.wp-reverse .wp-feature-img-wrap img {
    border-bottom: 5px solid #0088cc; 
}

@media (max-width: 992px) {
    .wp-reverse .wp-feature-grid {
        flex-direction: column;
    }
    
    .wp-reverse .wp-feature-img-wrap {
        order: -1; 
    }
    
    .wp-reverse .wp-feature-img-wrap img {
        height: 300px;
    }
    
    .wp-reverse .wp-feature-content {
        margin-right: 15px;
        margin-left: 15px;
        margin-top: -40px; 
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .wp-reverse .wp-feature-content {
        margin-right: 10px;
        margin-left: 10px;
        margin-top: -30px;
        padding: 30px 20px;
    }
}

/* =========================================
   WP STYLE LISTING SECTION
========================================= */
.wp-listing-section {
    background: #e9ecef63; 
    padding: 20px 20px;
}

.wp-listing-section .listings-title {
    text-align: center;
    margin-bottom: 35px;
}

.wp-listing-section .listings-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #bf0909;
    margin-bottom: 15px;
    border-left: NONE !important;
    padding-left: 0 !important;
    display: inline-block;
    position: relative;
}

.wp-listing-section .listings-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #853008; 
    border-radius: 2px;
}

.wp-listing-section .listings-title p {
    font-size: 16px;
    color: #64748b;
    max-width: 720px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.wp-listing-section .listings-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.wp-listing-section .listing-card {
    background: #ffffff; 
    border-radius: 12px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e8f0;
    border-top: 5px solid #853008; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.wp-listing-section .listing-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.wp-listing-section .listing-body {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wp-listing-section .profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #bf0909; 
    margin-bottom: 10px;
}

.wp-listing-section .tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.wp-listing-section .tags span {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px; 
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.wp-listing-section .listing-body::after {
    content: '';
    flex: 1;
}

.wp-listing-section .listing-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.wp-listing-section .listing-btns a {
    flex: 1;
    max-width: 135px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px; 
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.wp-listing-section .btn-tg {
    background: #6700b5;
    color: #fff;
}

.wp-listing-section .btn-tg:hover {
    background: #0077b5;
}

.wp-listing-section .btn-wa {
    background: #be8d1e;
    color: #fff;
}

.wp-listing-section .btn-wa:hover {
    background: #be341e;
}

@media (max-width: 768px) {
    .wp-listing-section .listings-title h2 {
        font-size: 28px;
    }

    .wp-listing-section .listing-card {
        margin: 0 10px;
    }

    .wp-listing-section .listing-img img {
        height: 220px;
    }

    .wp-listing-section .listing-btns a {
        max-width: 100%;
        height: 42px;
        font-size: 14px;
    }
}

/* =========================================
   FULL-WIDTH VIDEO HERO
========================================= */
.hero-video-full {
    position: relative;
    width: 100%;
    height: 75vh; 
    background: #000;
    overflow: hidden;
    margin-top: 60px; 
}

.hero-video-full video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to top, #f8fafc, transparent); 
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-video-full {
        height: 50vh; 
        margin-top: 50px;
    }
    .video-gradient {
        height: 80px;
        background: linear-gradient(to top, #f8fafc, transparent); 
    }
}

/* =========================================
   WP STYLE FEATURE SECTION (Light Theme Match)
========================================= */
.wp-style-feature {
    padding: 20px 20px;
    background: #ffffff; 
    position: relative;
    overflow: hidden;
}

.wp-feature-grid {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.wp-feature-img-wrap {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.wp-feature-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px; 
    border: 1px solid #e2e8f0;
    border-bottom: 5px solid #853008; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
}

.wp-feature-content {
    flex: 0 0 58%;
    background: #ffffff; 
    padding: 35px;
    margin-left: -50px; 
    z-index: 2;
    position: relative;
    border-radius: 16px;
    border: 1px solid #e2e8f0; 
    border-top: 5px solid #0088cc; 
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
}

.wp-feature-content h2 {
    font-size: 32px;
    color: #bf0909; 
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.25;
    border-left: NONE !important; 
    padding-left: 0 !important;
}

.wp-subtitle {
    font-size: 18px;
    color: #bf0909; 
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #853008; 
}

.wp-feature-content p {
    margin-bottom: 15px;
    color: #475569; 
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 992px) {
    .wp-feature-grid {
        flex-direction: column;
    }
    
    .wp-feature-img-wrap {
        flex: 1 1 100%;
    }
    
    .wp-feature-img-wrap img {
        height: 300px;
    }
    
    .wp-feature-content {
        flex: 1 1 100%;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: -40px; 
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .wp-style-feature {
        padding: 40px 10px;
    }
    
    .wp-feature-content {
        padding: 25px 20px;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -30px;
    }
    
    .wp-feature-content h2 {
        font-size: 26px;
    }
}

/* =========================================
   PIXEL CATEGORY SECTION
========================================= */
.pixel-category-section {
    background: #e9ecef59;
    padding: 20px 20px;
}

.pixel-category-section .cat-heading {
    color: #bf0909;
    font-weight: 800;
    font-size: 32px;
    border-left: none;
    margin-bottom: 30px;
}

.pixel-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.pixel-card .cat-pixel-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease, opacity 0.3s ease;
    image-rendering: auto; 
}

.pixel-card .cat-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.cat-pixel-img.dissolving {
    transform: scale(0.2); 
    filter: blur(15px) brightness(3) contrast(2); 
    opacity: 0; 
    image-rendering: pixelated; 
}

.cat-pixel-img.assembling {
    animation: pixelAssemble 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    image-rendering: pixelated; 
}

@keyframes pixelAssemble {
    0% {
        transform: scale(0.2);
        filter: blur(15px) brightness(3) contrast(2);
        opacity: 0;
        image-rendering: pixelated;
    }
    50% {
        transform: scale(1.05);
        filter: blur(3px) brightness(1.5) contrast(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        filter: blur(0px) brightness(1) contrast(1);
        opacity: 1;
        image-rendering: auto; 
    }
}

.pixel-card:hover .cat-pixel-img:not(.dissolving):not(.assembling) {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* =========================================
   ESCORT EXCLUSIVE SECTION
========================================= */
.escort-exclusive-section {
    width: 100%;
    padding: 50px 0;
    background: #f1f5f9;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.escort-exclusive-section .escort-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.escort-exclusive-section .escort-row {
    display: flex;
    justify-content: center;
}

.escort-exclusive-section .escort-content {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    backdrop-filter: blur(0px);
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.escort-exclusive-section .escort-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #1e293b;
    letter-spacing: -0.01em;
    border-left: 5px solid #853008;
    padding-left: 20px;
}

.escort-exclusive-section .escort-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #475569;
    font-weight: 450;
}

.escort-exclusive-section .escort-content a {
    color: #853008;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.escort-exclusive-section .escort-content a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.escort-exclusive-section .escort-cta {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.escort-exclusive-section .escort-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.escort-exclusive-section .escort-btn-call {
    background: #dc2626;
    color: white;
    box-shadow: 0 2px 4px rgba(214, 64, 43, 0.2);
}

.escort-exclusive-section .escort-btn-call:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(214, 64, 43, 0.3);
}

.escort-exclusive-section .escort-btn-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 2px 4px rgba(37, 181, 109, 0.2);
}

.escort-exclusive-section .escort-btn-wa:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 181, 109, 0.3);
}

@media (max-width: 768px) {
    .escort-exclusive-section {
        padding: 40px 0;
    }
    .escort-exclusive-section .escort-content {
        padding: 25px 20px;
    }
    .escort-exclusive-section .escort-content h2 {
        font-size: 1.7rem;
        padding-left: 15px;
        border-left-width: 4px;
        margin-bottom: 18px;
    }
    .escort-exclusive-section .escort-content p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 15px;
    }
    .escort-exclusive-section .escort-cta {
        gap: 12px;
        flex-direction: column;
    }
    .escort-exclusive-section .escort-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .escort-exclusive-section .escort-container {
        padding: 0 2px;
    }
    .escort-exclusive-section .escort-content h2 {
        font-size: 1.5rem;
    }
    .escort-exclusive-section .escort-content p {
        font-size: 0.9rem;
    }
}

/* =========================================
   UNIFIED SPLIT CARD SECTION
========================================= */
.unified-feature-section {
    background: #ffffff;
    padding: 20px 20px;
}

.unified-card {
    display: flex;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.unified-img {
    flex: 0 0 40%;
    position: relative;
}

.unified-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.unified-img::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 3px;
    background: #853008;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
}

.unified-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.unified-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #bf0909;
    margin-bottom: 15px;
    line-height: 1.3;
    border-left: NONE !important;
    padding-left: 0 !important;
}

.unified-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .unified-card {
        flex-direction: column;
    }

    .unified-img {
        flex: none;
        height: 250px;
    }

    .unified-img::after {
        width: 80%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 10%;
        right: 10%;
    }

    .unified-content {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .unified-feature-section {
        padding: 40px 10px;
    }
    .unified-content h2 {
        font-size: 24px;
    }
}