/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #000;
}

/* HERO SECTION */
.hero {
  background: url('images/1.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background-color: #000;
  z-index: 1000;
  position: sticky;
  top: 0;
  width: 100%;
}

/* 🔥 TEXT LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.logo-icon {
  color: #b0182f;
  font-size: 24px;
}

.logo-text {
  letter-spacing: 1px;
}

/* OLD IMAGE REMOVE */
.logo img {
  display: none;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links li a:hover {
  color: #b0182f;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  background-color: #b0182f;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  transition: 0.3s;
}

.btn:hover {
  background-color: #8c1225;
}

/* SERVICES */
.services {
  text-align: center;
  padding: 60px 30px;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.services p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #333;
}

/* CARDS */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 50px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  color: #444;
}

/* NAV ICON */
.nav-icon {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .nav-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #000;
    width: 100%;
    padding: 20px 0;
    display: none;
    z-index: 5;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    padding: 10px 0;
  }

  .nav-icon {
    display: inline-block;
  }

  .hamburger {
    display: block;
  }

  .hero {
    height: auto;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* DESKTOP */
@media (min-width: 769px) {
  .nav-icon {
    display: none;
  }
}
	/* Services Section */
.services {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #b0182f;
}

.services p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 300px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #b0182f;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* Section Styling */
.escorts-section {
  padding: 60px 30px;
  text-align: center;
  background-color: #0e0e0e;
}

.escorts-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.escorts-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #ccc;
}

/* Grid Layout */
.escort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Profile Card */
.escort-card {
  background-color: #1a1a1a;
  border: 1px solid #b0182f;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.escort-card:hover {
  transform: translateY(-6px);
}

/* Profile Image */
.escort-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Text Info Inside Card */
.escort-card .escort-info {
  padding: 15px;
}

.escort-card h3 {
  color: #ffd700;
  margin: 0 0 8px;
}

.escort-card .details {
  color: #ccc;
  margin-bottom: 10px;
}

.escort-card .rating {
  color: #ffc107;
  margin-bottom: 8px;
}

.escort-card .description {
  font-size: 13px;
  color: #aaa;
  line-height: 1.4;
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
  color: #222;
}

.why-choose-us h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #b0182f;
}

.why-choose-us p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 300px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #b0182f;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #b0182f;
}

.testimonials .subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 300px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.avatar {
  background-color: #b0182f;
  color: white;
  font-weight: bold;
  font-size: 20px;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card strong {
  display: block;
  color: #b0182f;
  font-weight: 600;
}
.cities {
  background-color: #fef6f0; /* soft peach background */
  padding: 60px 30px;
  text-align: center;
}

.cities h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.cities .subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.city-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-links a img {
  width: 24px;
  height: 24px;
}

.city-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  background-color: #fff9f4;
}
.faqs {
  background-color: #f3f8fb; /* soft blue background */
  padding: 60px 30px;
  text-align: center;
}

.faqs h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.faq-subtext {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
  font-size: 16px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.faq-question img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 64px;
  font-size: 14px;
  color: #555;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

.arrow {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s;
}
.contact-cta {
  background-color: #1e293b; /* darker blue-gray for premium look */
  color: #fff;
  padding: 60px 30px;
  text-align: center;
}

.contact-cta .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.contact-cta .btn {
  background-color: #facc15;
  color: #1e293b;
  padding: 14px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.contact-cta .btn:hover {
  background-color: #eab308;
}

.contact-cta .contact-info {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

.contact-cta .contact-info img {
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
}
html {
    scroll-behavior: smooth;
  }
 .custom-footer {
  background-color: #1e1b4b;
  color: #e0e7ff;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 4px solid #facc15;
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #facc15;
  font-size: 18px;
}

/* Quick Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #e0e7ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a img {
  width: 20px;
  margin-right: 8px;
}

.footer-links a:hover {
  color: #facc15;
  transform: translateX(5px);
}

/* Cities */
.city-links-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.city-links-footer a {
  color: #c7d2fe;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.city-links-footer a:hover {
  color: #facc15;
  padding-left: 5px;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5f5;
}

/* Social */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a img {
  width: 35px;
  transition: 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
}

/* Bottom */
.custom-footer p {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 30px;
}

/* Scroll Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff3c61, #b0182f);
  color: white;
  font-size: 24px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.3s;
}

#scrollToTopBtn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #d61642, #7e1124);
}

/* Mobile */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .city-links-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  #scrollToTopBtn {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
    /* Just for demo: Add content to scroll */
    body {
      height: 2000px;
      margin: 0;
      font-family: Arial, sans-serif;
    }
/* Scrollbar Track */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Background */
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff3c61, #b0182f);
  border-radius: 10px;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
}

/* Scrollbar Thumb on Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#d61642, #7e1124);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b0182f #f0f0f0;
}
@media (prefers-color-scheme: dark) {
  ::-webkit-scrollbar-track {
    background: #222;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff758c, #ff7eb3);
  }
  * {
    scrollbar-color: #ff7eb3 #222;
  }
}
/* =========================
   CITY PAGE HERO
========================= */
.city-page-hero {
  position: relative;
  height: 65vh;
  background: url('images/1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-page-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 75, 0.85);
}

.city-page-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 15px;
}

.city-page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.city-page-hero p {
  color: #c7d2fe;
  margin-bottom: 20px;
  font-size: 16px;
}

/* =========================
   CONTENT SECTION
========================= */
.city-page-content {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.city-page-content h2 {
  color: #1e1b4b;
  margin-bottom: 15px;
}

.city-page-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* =========================
   ESCORT GRID
========================= */
.city-page-escorts {
  padding: 50px 20px;
  background: #f9fafb;
  text-align: center;
}

.city-page-escorts h2 {
  margin-bottom: 30px;
  color: #1e1b4b;
}

.city-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* =========================
   CARD DESIGN
========================= */
.city-page-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.city-page-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.city-page-img {
  position: relative;
}

.city-page-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* BADGE */
.city-page-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* INFO */
.city-page-info {
  padding: 18px;
  text-align: left;
}

.city-page-info h3 {
  color: #1e1b4b;
  margin-bottom: 5px;
}

.city-page-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.city-page-rating {
  color: #facc15;
  margin-bottom: 8px;
}

.city-page-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* BUTTON */
.city-page-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff3c61, #b0182f);
  color: #fff;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.city-page-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #d61642, #7e1124);
}


/* =========================
   FAQ SECTION
========================= */
.city-page-faq {
  padding: 50px 20px;
  max-width: 800px;
  margin: auto;
}

.city-page-faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e1b4b;
}

.city-page-faq-item {
  background: #f1f5f9;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.city-page-faq-item h3 {
  margin-bottom: 5px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .city-page-hero {
    height: 55vh;
  }

  .city-page-hero h1 {
    font-size: 28px;
  }

  .city-page-hero p {
    font-size: 14px;
  }

  .city-page-img img {
    height: 220px;
  }

  .city-page-info {
    text-align: center;
  }

  .city-page-btn {
    width: 100%;
    text-align: center;
  }

  .city-page-benefits-grid {
    flex-direction: column;
    align-items: center;
  }
}