/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fafafa;
  color: #222;
}
a {
  color: #2467ec;
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: underline;
}
/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
/* Header & Navbar */
header {
  background: #fff;
  box-shadow: 0 2px 6px #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}
.logo {
  height: 50px;
  width: 120px;

}
nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
nav ul li a {
  font-weight: 600;
  font-size: 1rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}
/* Banner */
.banner {
  width: 100%;
  height: 500px;
  background: url("/images/escort-service-lucknow-17032025-banner.webp") center center/cover no-repeat;
  border-radius: 0 0 12px 12px;
  margin-bottom: 24px;
}
/* Intro Section */
.intro-section h1 {
  font-size: 2.5rem;
  color: #183153;
  margin-bottom: 16px;
}
.intro-section p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 100%; /* Full width */
}


/* Listing Section */
.listing-section {
  margin-bottom: 40px;
}
.listing-section h2 {
  font-size: 2rem;
  color: #183153;
  margin-bottom: 20px;
}
.listing-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
  margin-bottom: 24px;
  padding: 16px;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.listing-item:hover {
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.2);
}
.listing-item img {
  width: 38%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.listing-details {
  width: 62%;
}
.listing-details h3 {
  font-size: 1.3rem;
  color: #1a3365;
  margin-bottom: 12px;
}
.listing-details p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}
.listing-contact-buttons {
  display: flex;
  gap: 14px;
}
.listing-contact-buttons a {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1px 12px #0003;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.listing-contact-buttons a.btn-call {
  background-color: #218838;
}
.listing-contact-buttons a i {
  margin-right: 8px;
}
.listing-contact-buttons a:hover,
.listing-contact-buttons a:focus {
  opacity: 0.85;
}
/* Floating Call & WhatsApp Buttons */
.floating-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 1000;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 1px 12px #0003;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.floating-btn.call {
  background-color: #218838;
  bottom: 140px;
}
.floating-btn.whatsapp {
  background-color: #25d366;
}
.floating-btn i {
  margin-right: 10px;
}
.floating-btn:hover,
.floating-btn:focus {
  opacity: 0.9;
}
/* Additional Sections */
.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  font-size: 2rem;
  color: #183153;
  margin-bottom: 16px;
}
.content-section p {
  font-size: 1rem;
  max-width: 800px;
  line-height: 1.5;
}
/* Footer with 4 columns, mobile-friendly */
footer {
  background: #162240;
  color: #fff;
  margin-top: 80px;
}
.footer-cols {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto 20px auto;
  padding: 0 16px;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-col h4 {
  margin-bottom: 18px;
  color: #aacfef;
}
.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: #ddd;
}
.footer-col a:hover,
.footer-col a:focus {
  text-decoration: underline;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  padding: 16px;
  background: #101931;
  font-size: 0.9rem;
  border-top: 1px solid #223256;
}
/* Popup Notification */
.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 14%;
  transform: translate(-50%, 0);
  z-index: 2000;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px #2225;
  padding: 32px 24px;
  text-align: center;
  min-width: 250px;
}
.popup.show {
  display: block;
}
.popup button {
  margin-top: 18px;
  padding: 7px 22px;
  border: 0;
  border-radius: 5px;
  background: #183153;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
/* Responsive Design */
/* Hamburger menu for mobile */
@media (max-width: 900px) {
  nav ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    min-width: 180px;
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1200;
  }
  nav ul.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .listing-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .listing-item img,
  .listing-details {
    width: 100%;
  }
  .listing-item img {
    height: 180px;
    margin-bottom: 12px;
  }
  .footer-cols {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 24px;
  }
}
/* Smaller devices */
@media (max-width: 600px) {
  .intro-section h1 {
    font-size: 1.8rem;
  }
  .banner {
    height: 160px;
  }
}
