

html, body {
  height: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}


*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.escort-wrapper {
  background-color: #f9f9f9;
}

.escort-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .escort-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

 .left-sidebar {
  flex: 0 0 19%;
  order: 1;
}
.center-section {
  flex: 0 0 54%;
  order: 2;
}
.right-banner {
  flex: 0 0 24%;
  order: 3;
}



  .escort-text-content {
    width: 100%;
    order: 4;
    margin-top: 20px;
  }
}




.center-section {
  order: 1;
}
.right-banner {
  order: 2;
}
.left-sidebar {
  order: 4;
}
.escort-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}

.escort-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.escort-card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 160px;
}
.escort-card img {
  width: 128px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.escort-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.call-btn,
.whatsapp-btn {
  margin-top: 10px;
  padding: 8px 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.call-btn {
  background-color: #ffcc00;
  color: #111;
  margin-right: 10px;
}
.whatsapp-btn {
  background-color: #25D366;
  color: #fff;
}

.right-banner img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.right-banner img:hover {
  transform: scale(1.03);
}

.left-sidebar {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
}
.left-sidebar h5 {
  background-color: #d4004a;
  color: #fff;
  padding: 8px;
  font-weight: bold;
  cursor: pointer;
}
.left-sidebar ul {
  list-style: none;
  margin-top: 10px;
}
.left-sidebar ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  cursor: pointer;
}

.escort-text-content {
  order: 3;
  padding: 30px 20px;
  background: #fff;
  color: #111;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  max-width: 1200px;
  margin: 30px auto 0;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}
.escort-text-content h2 {
  font-weight: bold;
  color: #d4004a;
  margin-bottom: 10px;
}
.escort-text-content h3 {
font-weight: bold;
 color: #d4004a;
  margin-bottom: 10px;
}
.escort-text-content p {
  margin-top: 10px;
}


@media (min-width: 768px) {
  .escort-section {
    flex-direction: row;
  }

  .left-sidebar {
  flex: 0 0 19%;
  order: 1;
  min-width: 180px; 
}

.center-section {
  flex: 0 0 54%;
  order: 2;
  min-width: 300px;
}

.right-banner {
  flex: 0 0 24%;
  order: 3;
  min-width: 200px;
}


  .escort-text-content {
    order: 4;
  }

  .escort-card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .escort-section {
    display: flex;
    flex-direction: column;
  }

  .center-section {
    order: 1;
  }

  .escort-text-content {
    order: 2;
  }

  .right-banner {
    order: 3;
  }

  .left-sidebar {
    order: 4; 
  }



  .left-sidebar ul {
    display: none;
  }

  .left-sidebar.open ul {
    display: block;
  }

  .escort-card {
    width: 100%;
  }
  .left-sidebar {
  width: 100%;
  flex: 0 0 100%;
}

}

.escort-footer {
  background: #fff;
  color: #111;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px 20px;
  border-top: 3px solid #d4004a;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-title {
  font-size: 26px;
  font-weight: 700;
  color: #d4004a;
}

.footer-desc {
  font-size: 15.5px;
  color: #444;
  margin: 12px 0 20px;
  max-width: 400px;
  line-height: 1.7;
}

.footer-book-btn {
  display: inline-block;
  background: #d4004a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(231, 0, 0, 0.4);
}
.footer-book-btn:hover {
  background: #b00000;
  box-shadow: 0 0 15px rgba(231, 0, 0, 0.6);
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #d4004a;
}

.city-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.city-links li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
}
.city-links li a:hover {
  color: #d4004a;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 30px;
}
.footer-bottom a {
  color: #d4004a;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}


@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-branding {
    width: 50%;
  }

  .footer-links {
    width: 45%;
  }
}


    .btn-warning, .btn-success {
        padding: 6px 16px;
        font-size: 14px;
        line-height: 1.2;
        white-space: nowrap;
        border-radius: 4px;
    }

    .btn-success {
        background-color: #25D366 !important;
        color: #fff !important;
        border: none;
    }

    @media (max-width: 576px) {
        .sitecards .d-flex.gap-2 {
            flex-wrap: nowrap;
        }

        .sitecards button {
            flex: 1;
            min-width: 48%;
        }
    }

@media (max-width: 768px) {
  .center-section h2 {
    margin: 2px 6px;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}
.left-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-sidebar ul li a {
  text-decoration: none;
  color: #333;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.left-sidebar ul li a:hover {
  color: #d4004a;
  background-color: #f8f8f8;
  font-weight: bold;
  padding-left: 8px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fff;
}


  #ageGate {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Poppins', sans-serif;
  }

  .age-gate-box {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 25px;
    max-width: 400px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 77, 0.6);
  }

  .age-gate-box h2 {
    color: #ff0055;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .age-gate-box p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btn-yes, .btn-no {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-width: 130px;
  }

  .btn-yes {
    background-color: #ff0055;
    color: white;
  }

  .btn-no {
    background-color: #555;
    color: white;
  }

  .btn-yes:hover {
    background-color: #cc0044;
  }

  .btn-no:hover {
    background-color: #333;
  }

  .floating-icons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: transform 0.2s ease;
}
.whatsapp-icon {
   background-color: #25D366;
}


.floating-icons a:hover {
  transform: scale(1.1);
}

.call-icon {
  font-size: 24px;
  background-color: #d4004a;
}

.whatsapp-icon img {
  width: 30px;
  height: 30px;
}




