
.why-choose {
font-family: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #000;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f2b1b;
  padding: 15px 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  color: #fff;
  line-height: 1.2;
}

.logo-text .pink {
  color: #c2185b;
  font-weight: bold;
}

.logo-text .tagline {
  font-size: 14px;
  letter-spacing: 1px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  margin-left: 25px;
  font-weight: 600;
}

.menu a.active {
  color: #e91e63;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 30px;
  background: linear-gradient(to right, #fceabb, #a8a499);
  color: #260303;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 400px;
}

.hero-text h1 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

.hero-buttons .btn {
  display: inline-block;
  background: #391797;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  margin-right: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.hero-image img {
  height: 300px; 
  width: auto;  
  object-fit: cover;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image .caption {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #7b1fa2;
  background: rgba(255,255,255,0.7);
  padding: 5px 10px;
  border-radius: 5px;
}

.profiles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
}

/* Profile Card */
.profile-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  padding: 16px;
  gap: 16px;
  max-width: 1100px;   /* ✅ Set maximum width */
  margin: 0 auto;     /* ✅ Center the box */
  flex-wrap: wrap;
}


/* Image Styling */
.profile-card img {
  width: 160px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* Content */
.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-content h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #222;
  font-weight: 600;
}

.profile-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 12px;
}

/* Tags and Buttons */
.tag-button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #e0fce0;
  color: #067806;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}

.btn.whatsapp {
  background-color: #25D366;
}

.btn.call {
  background-color: #ff5f5f;
}

/* Responsive Layout */
@media (max-width: 768px) {
	.profiles {
    padding: 10px;
  }

  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 16px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 12px; /* Keep round corners */
  }
 .profile-card img {
    width: 100%;           /* full width */
    height: 180px;         /* shorter height */
    object-fit: cover;     /* keeps image cropped neatly */
    border-radius: 8px;
  }

 .tag-button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;         /* 🔒 prevent row wrap */
  gap: 10px;
  overflow-x: auto;          /* ✅ optional: allows horizontal scroll if needed */
  width: 100%;
}

.tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex-shrink: 1;
}

.buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

}
.profile-content p {
  text-align: justify;
}
.content-paragraph {
  background: linear-gradient(to bottom, #fefefe, #eaeaea);
  color: #333;
  text-align: center;
  padding: 10px 20px;
  font-family: 'Georgia', serif;
}
.content-paragraph h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #c2185b;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.content-paragraph p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  margin-bottom: 20px; 
  text-align: justify;
}

.content-paragraph strong {
  color: #e91e63;
}

.table-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: auto;      /* enables horizontal scroll if needed */
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;      /* force table to scroll on small devices */
}
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  min-width: 600px;
}
.rates-table th,
.rates-table td {
  border: 1px solid #444;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
}
.rates-table th {
  background-color: #222;
  color: #ffcc00;
  font-weight: bold;
}

.rates-table tr:nth-child(even) {
  background-color: #1a1a1a;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 28px;
  }

  .rates-table th,
  .rates-table td {
    font-size: 13px;
    padding: 10px;
  }
}
.category-section {
  text-align: center;
  padding: 18px 20px;
  background: #fff;
}

.category-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: #4a00b4;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}

.category-buttons a {
  display: inline-block;
  background: #e0d8ff;
  color: #4a00b4;
  padding: 8px 5px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s ease;
}

.category-buttons a:hover {
  background: #c3b0ff;
  color: #000;
}
.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 14px 10px;
  background: #fff;
  gap: 20px;
}

.contact-info {
  flex: 1;
  background: #ccd0e6;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  min-width: 280px;
  max-width: 450px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #111;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.info-box i {
  font-size: 24px;
  color: #fff;
}
.contact-map {
  flex: 2;
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
/* General Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* =================== Pricing Section =================== */
.pricing-section {
  background: #f0e7ed;
  padding: 20px 0;
}

.pricing-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px; /* default for desktop */
}

.pricing-table {
  width: 100%;
  max-width: 1100px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  color: white;
  border: 2px solid #72005a;
}

.pricing-table thead {
  background-color: #3c1717;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: center;
  border: 1px solid #665f5f;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: #665f5f;
}
.pricing-table tbody tr:nth-child(odd) {
  background-color: #a6a899;
}

.book-btn {
  background: #d100ff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ff007a;
  transform: scale(1.05);
}

/* =================== Client Table Section =================== */
.client-table-section {
  padding: 40px 15px;
  background: #eaeaea;
}

.client-table-wrapper {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 900px;
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-family: Arial, sans-serif;
  border: 2px solid #0f0;
  table-layout: fixed;
}

.client-table th,
.client-table td {
  padding: 14px 10px;
  text-align: center;
  border: 1px solid #444;
  word-wrap: break-word;
  font-size: 14px;
}

.client-table thead {
  background: linear-gradient(to bottom, #00ff00, #007500);
}

.client-table tbody tr:nth-child(even) {
  background-color: #111;
}
.client-table tbody tr:nth-child(odd) {
  background-color: #000;
}

/* =================== Shared Responsive =================== */
@media (max-width: 600px) {
  .pricing-table-wrapper,
  .client-table-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;  /* ✅ Even left spacing */
    padding-right: 12px; /* ✅ Even right spacing */
    box-sizing: border-box;
    /* Optional Scroll Handling */
    /* overflow-x: auto; */
  }

  .pricing-table,
  .client-table {
    width: 100%;
    min-width: 100%; /* Prevent shrinking */
    /* min-width: 600px; */ /* Uncomment for horizontal scroll */
  }

  .pricing-table th,
  .pricing-table td,
  .client-table th,
  .client-table td {
    font-size: 13px;
    padding: 10px 6px;
  }
}

/* =================== Shared Large Desktop =================== */
@media (min-width: 1024px) {
  .pricing-table-wrapper {
    max-width: 800px;
  }

  .client-table-wrapper {
    max-width: 1100px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-image img {
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}
.footer {
   background-color: #131e2d;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 30px 20px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.footer-item {
  flex: 1 1 200px;
  margin: 10px 15px;
}

.footer-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-item span {
  font-size: 14px;
}

.footer-item .highlight {
  color: #ffa500;
  font-weight: bold;
}

.footer-item.social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-item.social img {
  height: 28px;
  width: 28px;
}
.card-section {
  max-width: 1150px;       /* Limit total width of content */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.escort-card {
  background: #ff0036;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.escort-card h3 {
  color: #fff;
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.escort-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 3px solid #fff;
}

.escort-type {
  background-color: #fff;
  color: #d90036;
  margin-top: 10px;
  padding: 5px 0;
  font-weight: bold;
  font-size: 16px;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .card-section {
    grid-template-columns: repeat(2, 1fr);
	
  }
}

@media (max-width: 480px) {
  .card-section {
    grid-template-columns: 1fr;
  }
}
.faq-testimonial-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  background: #151131;
  color: #fff;
  font-family: Arial, sans-serif;
}

.faq-box, .testimonial-box {
  flex: 1 1 45%;
  min-width: 300px;
}

.faq-box h4, .testimonial-box h4 {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 22px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #d70f50;
  transition: background 0.3s;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 10px 20px 15px;
}

.faq-item.open span {
  transform: rotate(45deg); /* turns + into x */
}

/* Testimonials */
.testimonial {
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #ffcb05;
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-testimonial-section {
    flex-direction: column;
  }

  .faq-box, .testimonial-box {
    flex: 1 1 100%;
  }
}
