:root {
  --primary-color: #433466;
  --secondary-color: #f06292;
  --super-premium-color: #1a1a1a;
  --premium-color: #d4af37;
  --verified-color: #28a745;
  --dark-color: #2c2c2c;
  --light-color: #f8f9fa;
  --body-font: "Manrope", sans-serif;
  --heading-font: "Inter", sans-serif;
  --border-radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --header-gradient-start: #28a745;
  --header-gradient-end: #0b8a29ff;
  --text-white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-dark: rgba(0, 0, 0, 0.2);
  --shadow-color-light: rgba(0, 0, 0, 0.05);
  --breadcrumb-bg: #f1f1f1;
  --text-gray: #555;
  --white: #ffffff;
  --sidebar-bg: #f9f9f9;
  --text-dark: #333;
  --tag-border: dodgerblue;
  --tag-hover: #f06292;
  --pagination-color: #ff5e62;
  --btn-color: linear-gradient(
    90deg,
    #ff85b3 7.03%,
    #d86eb7 30.94%,
    #7f5af0 81.25%
  );
}

body {
  font-family: var(--body-font);
  background: var(--light-color);
  color: var(--text-dark);
  margin: 0;
  overflow-x: hidden;
}

p.profile-det strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

a.watermark {
  position: relative;
}
a.watermark::before {
  content: "Nyraescorts";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(339deg);
  font-size: 26px;
  font-weight: 700;
  color: #0d6efd !important;
  white-space: nowrap;
  pointer-events: none;
  text-transform: lowercase;
  z-index: 101;
}
.profiles-card.city-card::before {
  content: "Nyraescorts";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(339deg);
  font-size: 26px;
  font-weight: 700;
  color: #0d6efd !important;
  white-space: nowrap;
  pointer-events: none;
  text-transform: lowercase;
  z-index: 101;
}
/* Section Background */
.escort-content.hpme {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f8, #ffffff);
}

/* Premium Card */
.escort-card.hpme-imnn {
  max-width: 1100px;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 55px;
  box-shadow: 0 20px 50px rgba(233, 30, 99, 0.15);
  border: 1px solid rgba(233, 30, 99, 0.25);
  position: relative;
  overflow: hidden;
}

/* Gradient Top Line */
.escort-card.hpme-imnn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #e91e63, #ff6fa5);
}

/* Heading */
.escort-card.hpme-imnn h2 {
  font-size: 30px;
  font-weight: 800;
  color: #a80038;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Accent Line */
.escort-card.hpme-imnn h2 span {
  color: #e91e63;
}

/* Text Styling */
.escort-card.hpme-imnn p {
  font-size: 16.5px;
  line-height: 2;
  color: #2f2f2f;
  margin-bottom: 22px;
}

/* Highlight Important Lines */
.escort-card.hpme-imnn p strong {
  color: #a80038;
  font-weight: 600;
}

/* Soft Hover */
.escort-card.hpme-imnn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(233, 30, 99, 0.2);
  transition: all 0.35s ease;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .escort-card.hpme-imnn {
    padding: 30px 25px;
    border-radius: 16px;
  }

  .escort-card.hpme-imnn h2 {
    font-size: 23px;
  }

  .escort-card.hpme-imnn p {
    font-size: 15px;
    line-height: 1.85;
  }
}

.faq-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0d6efd;
}

.faq-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #222;
}

.faq-question span {
  font-size: 22px;
  color: #0d6efd;
}

.faq-answer {
  padding: 0 20px 18px;
  font-size: 15px;
  color: #555;
  display: none;
}

.hero {
  background: linear-gradient(150deg, #272142 0%, #272142 100%);
  min-height: clamp(300px, 50vh, 400px);
  color: var(--text-white);
  padding: 10rem 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/bg-girl.jpg) no-repeat center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.navbar-toggler {
  border-color: white !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.close-icon {
  display: none;
  font-size: 28px;
  color: white;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  display: none;
}

.navbar-toggler[aria-expanded="true"] .close-icon {
  display: inline;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: slideIn 1s ease-out;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  max-width: 700px;
  margin: 1rem auto;
}

.search-box {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  max-width: 500px;
  margin: 1.5rem auto;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.escort-content {
  /*background: linear-gradient(180deg, #fafafa, #ffffff);*/
  padding: 20px 0;
}

/* Headings */
.escort-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #b30059; /* premium pink */
  margin: 40px 0 15px;
  position: relative;
}

/* underline effect */
.escort-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #b30059;
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

/* Paragraphs */
.escort-content p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 22px;
}

/* Links */
.escort-content a {
  color: #b30059;
  font-weight: 600;
  text-decoration: none;
}

.escort-content a:hover {
  color: #800040;
  text-decoration: underline;
}

/* Content card */
.escort-card {
  background: #fde9f0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .escort-content h2 {
    font-size: 22px;
  }

  .escort-content p {
    font-size: 15.5px;
  }
  .escort-content {
    margin-top: -15px;
    padding: 0px;
  }
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none !important;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.phone {
  background: #0d6efd;
}
.float-btn.telegram {
  background: #24a1de;
}

.search-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-color-dark);
}

.form-select {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--text-gray);
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--dark-color);
  margin: 3rem 0 1.5rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.home-cards span.badge.bg-warning.text-dark {
  position: absolute;
  top: 14px;
  right: 14px;
}
div#profiles-container .profile-card {
  overflow: visible;
  background: #fde9f0;
}

.city-card,
.profile-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
  width: 100%;
  border: 1px solid #f062923b;
  position: relative;
}

.city-card:hover,
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-color-dark);
}

.city-card img,
.profile-card img {
  width: 100%;
  height: clamp(140px, 18vw, 180px);
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: transform 0.5s ease;
}

.city-card:hover img,
.profile-card:hover img {
  transform: scale(1.03);
}

.profile-card .card-body {
  padding: 1.25rem;
}

.badge-new {
  background: var(--primary-color);
  color: var(--text-white);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-weight: 500;
}

.btn-main {
  background: var(--btn-color) !important;
  color: var(--text-white) !important;
  font-weight: 500;
  border-radius: 50px !important;
  padding: 7px 14px !important;
  border: none !important;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

button.btn.btn-login.me-2 {
  background: var(--btn-color) !important;
  border-radius: 50px !important;
  padding: 7px 14px !important;
  border: none !important;
  color: var(--white);
}

button.btn.btn-create-profile {
  border: 2px solid !important;
  background-color: #ffffff00;
  color: var(--white);
  border-radius: 50px;
  padding: 7px 14px;
  border-color: #f780b4 !important;
}
.btn-main:hover {
  background: var(--tag-hover);
  transform: translateY(-2px);
}

a.btn.btn-secondary.btn-sm {
  border: 2px solid !important;
  background-color: #6c757d;
  color: #fff;
  border-radius: 50px;
  padding: 7px 14px;
}
.btn-secondary {
  background: #ffffff00;
  color: var(--text-dark);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  border: 2px solid var(--btn-color) !important;
}

.btn-secondary:hover {
  background: var(--breadcrumb-bg);
  transform: translateY(-2px);
}

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-color-light);
  padding: 0.75rem 0;
}

footer {
  background: var(--dark-color);
  color: var(--text-white);
  padding: 2rem 0;
  font-size: 0.85rem;
}

footer a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--text-white);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .header-search.new-header-cta p.search-subtitle {
    width: 100% !important;
  }
  .hero {
    min-height: 350px;
    padding: 3rem 1rem;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .hero p {
    font-size: 1rem;
  }
  .search-box {
    max-width: 90%;
  }
  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 300px;
    padding: 2.5rem 1rem;
  }
  .hero h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
  }
  .hero p {
    font-size: 0.9rem;
  }
  .city-card img,
  .profile-card img {
    height: 120px;
  }
  .profile-card .card-body {
    padding: 1rem;
  }
  .btn-main,
  .btn-secondary {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}

/* Navbar Styles */
.navbar {
  background: var(--primary-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand img {
  height: 50px;
}
.nav-link {
  color: white !important;
  font-weight: 500;
}
.nav-link:hover {
  color: #f06292 !important;
}
.btn-login,
.btn-create-profile {
  border-radius: 20px;
  padding: 8px 20px;
}
.btn-login {
  background-color: #f06292;
  color: white;
}
.btn-create-profile {
  background-color: #6c757d;
  color: white;
}

/* Footer Styles */
.footer {
  background: #433466;
  color: white;
  padding: 50px 0;
}
.footer a {
  color: var(--secondary-color);
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 28px;
  width: 48px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms cubic-bezier(0.2, 0.9, 0.3, 1);
  z-index: 9999;
}

.back-to-top:focus {
  outline: 3px solid rgba(15, 157, 88, 0.25);
  outline-offset: 3px;
}

/* visible state */
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* small-screen tweak */
@media (max-width: 480px) {
  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

/* profile page css*/

.header-search {
  background: linear-gradient(258.17deg, #ff98bf 5.23%, #142952 56.18%);
  padding: clamp(20px, 5vw, 30px) 0;
  color: var(--text-white);
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
}

.search-form {
  position: relative;
}

.search-input {
  width: 100%;
  padding: clamp(12px, 2vw, 15px) 20px;
  border: none;
  border-radius: var(--border-radius);
  font-size: clamp(1rem, 2vw, 1.1rem);
  box-shadow: var(--shadow);
  outline: none;
}

.search-input:focus {
  box-shadow: var(--shadow-color-dark);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: calc(var(--border-radius) / 2);
  padding: clamp(8px, 1.5vw, 10px) 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--secondary-color);
}

.search-title {
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.search-subtitle {
  text-align: center;
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.breadcrumb-section {
  background: var(--breadcrumb-bg);
  padding: 15px 0;
}

.city-title {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.city-description {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--text-gray);
}

.profile-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.profile-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-color-dark);
}

.profile-card img {
  width: 100%;
  height: clamp(180px, 20vw, 200px);
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.badge-super-premium,
.badge-premium,
.badge-verified {
  background-color: var(--premium-color);
  position: absolute;
  top: -12.5px;
  right: 10px;
  font-size: 0.8rem;
  opacity: 0.8;
  border-radius: calc(var(--border-radius) / 2);
}

.badge-premium {
  background-color: var(--super-premium-color);
}

.badge-verified {
  background-color: var(--verified-color);
}

.profile-card .badge {
  font-size: 0.8rem;
  margin-right: 5px;
}

.profile-card .description {
  display: -webkit-box;
  --webkit-line-clamp: 3;
  --moz-animation-delay: vertical;
  overflow: hidden;
  font-size: 0.9rem;
}

.profile-card .card-content {
  padding: 15px;
}

.sidebar {
  background: var(--sidebar-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-color-light);
}

.sidebar h5 {
  color: var(--text-dark);
  font-family: var(--heading-font);
  font-weight: 600;
}

.sidebar a {
  text-decoration: none;
}

.tag {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 5px 20px;
  border-radius: calc(var(--border-radius) / 2);
  border-left: 6px solid var(--tag-border);
  margin: 5px;
  display: block;
  cursor: pointer;
  font-size: 0.9rem;
}

.tag:hover {
  background: var(--tag-hover);
}

.safety-tips,
.featured-profiles {
  margin-top: 20px;
}

.featured-profile-card {
  background: var(--white);
  border-radius: calc(var(--border-radius) / 2);
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-color-light);
}

.featured-profile-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) / 2);
}

.featured-profile-card p {
  margin: 1% 0;
}

.pagination .page-link {
  color: var(--pagination-color);
}

.pagination .page-link:hover {
  background: var(--pagination-color);
  color: var(--text-white);
}

.profile-card a {
  text-decoration: none;
  color: var(--primary-color);
}

.load-more-container {
  text-align: center;
  margin: 30px 0;
}

.load-more-btn {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 12px 40px;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.load-more-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.load-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.loading-spinner {
  display: none;
  margin: 0 auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .new-home-card .profile-card {
    display: flex;
  }

  .profile-card img {
    min-height: 365px;
    max-height: 370px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }

  .profile-card a {
    width: 25%;
  }

  .profile-card .card-content {
    width: 75%;
  }
}

@media (max-width: 767px) {
  .my-profile-imgs .profile-image {
    width: 100% !important;
    height: 300px !important;
    margin-bottom: 28px;
  }
  .profile-card {
    flex-direction: column;
  }

  .profile-card img {
    width: 100%;
    height: clamp(350px, 20vw, 180px);
    object-position: top;

    /*                width: 100%;*/
    /*height: auto;*/
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }

  .profile-card .card-content {
    text-align: center;
  }

  .profile-card .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .sidebar {
    margin-top: 20px;
  }

  .search-input {
    font-size: 1rem;
    padding: clamp(10px, 1.8vw, 12px) 16px;
  }

  .search-btn {
    padding: clamp(6px, 1.5vw, 8px) 16px;
  }
}

.profile-card,
.tag,
.btn {
  transition: all 0.3s ease;
}

.profile-det span {
  background-color: var(--verified-color);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: 6px;
  /*margin: 14px 0;*/
}

.my-profile-imgs .profile-image {
  width: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-color-dark);
}
.my-msg-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.home-cards .profile-card a {
  width: auto;
}
.city-card {
  height: 270px;
  display: flex;
  align-items: end;
  border: none;
}
.city-1 {
  background-image: url(../../images/istockphoto-539018660-612x612.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-2 {
  background-image: url(../../images/istockphoto-510795912-612x612.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-3 {
  background-image: url(../../images/istockphoto-671326926-612x612.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-4 {
  background-image: url(../../images/images.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.city-5 {
  background-image: url(../../images/g.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.city-6 {
  background-image: url(../../images/p.webp);
  background-size: cover;
  background-repeat: no-repeat;
}

.city-7 {
  background-image: url(../../images/j.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-8 {
  background-image: url(../../images/h.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-9 {
  background-image: url(../../images/i.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.new-arr-1 {
  background-image: url(../../images/uploads/68b9bc5f2d0ce_9.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.new-arr-2 {
  background-image: url(../../images/uploads/690f93a5a1656_6.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.new-arr-3 {
  background-image: url(../../images/uploads/68d8d68ee2b97_Russian.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.new-arr-4 {
  background-image: url(../../images/uploads/68a5be813e650_1.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.city-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(8deg, #433466, #ffffff00);
}
.city-card .p-4 {
  position: relative;
  z-index: 1;
}
.clr-white {
  color: var(--white);
}
.profiles-card {
  height: 343px;
  display: flex;
  align-items: end;
  border: none;
}
.profiles-card.city-card span.badge.badge-new {
  background: #00ad4d;
  font-weight: 600;
}
.cta-profile p {
  text-align: start;
}
.cta-profile {
  padding: 0px 40px;
}
.header-search.new-header-cta {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.header-search.new-header-cta p.search-subtitle {
  margin-bottom: 16px;
  width: 60%;
}
img.girls-img {
  position: absolute;
  top: 0px;
  right: 0;
  width: 28%;
}

.only-desktop {
  display: none; /* mobile & small screens */
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.age-box {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.warning {
  font-size: 45px;
  color: #f9b300;
}

.age-box h2 {
  color: #d6336c;
  margin: 15px 0 25px;
  font-size: 32px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#yesBtn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#noBtn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

@media (min-width: 768px) {
  .only-desktop {
    display: block; /* desktop show */
  }
}

.only-mobile {
  display: block;
}

.popular-searches {
  background: #1e0c16;
  padding: 60px 20px;
}

.popular-searches .container {
  max-width: 1280px;
  margin: auto;
}

.popular-searches h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-searches h2 span {
  color: #ff2d7a;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.search-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid rgba(255, 45, 122, 0.45);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.35s;
}

.search-tags a:hover {
  background: #ff2d7a;
  color: #fff;
  border-color: #ff2d7a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 45, 122, 0.35);
}

@media (max-width: 768px) {
  .popular-searches {
    padding: 40px 15px;
  }

  .popular-searches h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .search-tags {
    gap: 10px;
  }

  .search-tags a {
    width: calc(50% - 5px);
    padding: 12px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  img.girls-img {
    display: none;
  }
}
.profile-wrap .profile-card {
  display: flex;
  gap: 27px;
}

@media (max-width: 767px) {
  #foot-log {
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }
}

.important-notice {
  max-width: 1000px;
  margin: 35px auto;
  background: #fffdf7;
  border: 2px solid #f0c36d;
  border-left: 8px solid #ff9800;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.notice-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ff9800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.notice-content {
  flex: 1;
}

.notice-content h3 {
  margin: 0 0 15px;
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.notice-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.notice-content strong {
  color: #d32f2f;
}

.notice-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-content ul li {
  font-size: 17px;
  margin-bottom: 12px;
  color: #333;
}

.notice-content ul li i {
  color: #2e7d32;
  margin-right: 10px;
}

.notice-warning {
  margin-top: 25px;
  background: #fff3e0;
  border-left: 5px solid #ff5722;
  padding: 15px 18px;
  border-radius: 8px;
  color: #b71c1c;
  font-size: 17px;
  font-weight: 600;
}

.notice-warning i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .important-notice {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .notice-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin: auto;
  }

  .notice-content {
    text-align: center;
  }

  .notice-content h3 {
    font-size: 24px;
  }

  .notice-content p {
    font-size: 16px;
  }

  .notice-content ul {
    text-align: left;
  }

  .notice-content ul li {
    font-size: 15px;
  }

  .notice-warning {
    font-size: 15px;
  }
}
