html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
}

header {
  background: linear-gradient(to right, #1c1c1c, #ff3c00);
  padding: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0; 
  padding-bottom: 0;
}

.contact-btn {
  background-color: white;
  color: #ff3c00;
  padding: 6px 12px;
  border-radius: 4px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.tagline {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 20px;
}

.highlight {
  background-color: #ff3c00;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 4px;
}

.hero-text h2 {
  font-size: 40px;
  margin: 10px 0;
}

.hero-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

.btn.red {
  background-color: #ff3c00;
}

.btn.green {
  background-color: #00c853;
}

.hero-image img {
  width: 350px;
  border-radius: 10px;
}
.escort-section {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  color: #ff0080;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.escort-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.escort-card {
  background-color: #000;
  border: 2px solid #222;
  border-radius: 5px;
  overflow: hidden;
  width: 250px;
  transition: transform 0.3s ease;
}

.escort-card:hover {
  transform: scale(1.05);
}

.escort-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.escort-name {
  background-color: #ff0080;
  color: white;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
}
.content-section {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.content-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  color: #ff0080;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.content-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}
.info-section {
  background-color: #722020;
  padding: 60px 20px;
  color: #e0e0e0;
  font-family: Arial, sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.info-text {
  flex: 1 1 500px;
}

.info-text h2 {
  color: #ff0080;
  font-size: 28px;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-image {
  flex: 1 1 400px;
}

.info-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.main-footer {
  background-color: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h3 {
  color: #ff0080;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ff0080;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(2);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #777;
}
.testimonials-section {
  background-color: #1e1e1e;
  color: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 28px;
  color: #ff0080;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #aaa;
}
.faq-section {
  background-color: #111;
  color: #ddd;
  padding: 60px 20px;
}

.faq-section .section-title {
  text-align: center;
  font-size: 28px;
  color: #ff0080;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-item h3 {
  color: #ff0080;
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}
.new-escort-section {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}

.new-escort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.new-escort-card .escort-name {
  background-color: #ff0080;
  color: white;
  padding: 15px 0;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: default;
  transition: background-color 0.3s ease;
}

.new-escort-card .escort-name:hover {
  background-color: #ff3399;
}
/* General Reset */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar base styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px; 
 padding: 10px 30px;
}

nav ul {
  display: flex;
  gap: 20px;
}

/* Buttons and Links */
.contact-btn {
  background-color: white;
  color: #ff3c00;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  box-shadow: 0px 8px 16px rgba(255, 60, 0, 0.2);
  border-radius: 5px;
  min-width: 160px;
  z-index: 1000;
  margin-top: 10px;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background-color: #ff3c00;
}

/* Hover for desktop */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive - Mobile Fix */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    text-align: left;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-top: 0;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }
}


/* ✅ Make escort cards full-width on small screens */
@media (max-width: 768px) {
  .escort-card {
    width: 100%;
    max-width: 100%;
  }

  .escort-grid {
    padding: 0 10px;
  }
}