body {
  font-family: Arial, sans-serif;
  margin:0;
  padding:0;
  background:#fff;
  color:#222;  /* darker text for readability */
}

.container {width:90%; max-width:1200px; margin:auto;}

h1, h2, h3 {
  color:#cc0066; /* darker pink headings, contrast passes */
}

a {text-decoration:none; color:#cc0066;}  /* links dark pink */
a:hover {color:#ff3399;}

/* Header */
.site-header {
  background:#cc0066;  /* darker pink */
  padding:10px 0;
  position:sticky;
  top:0;
  z-index:100;
}
.header-flex {display:flex; justify-content:space-between; align-items:center;}
.menu ul {list-style:none; margin:0; padding:0; display:flex;}
.menu li {margin:0 10px;}
.menu a {color:#fff; font-weight:bold;}
.menu-toggle {
  display:none;
  background:#cc0066;
  color:#fff;
  border:none;
  padding:10px 15px;
  font-size:20px;
  cursor:pointer;
  border-radius:5px;
}
/* ✅ City Search Dropdown */
.search-city {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 250px; /* optional limit */
}

/* Dropdown */
.search-city select {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}

/* Button (agar use karna ho to) */
.search-city button {
  background: #cc0066;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.search-city button:hover {
  background: #ff3399;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .search-city {
    width: 100%;       /* full width mobile pe */
    max-width: 100%;   /* no fixed limit */
  }

  .search-city select {
    width: 100%;
    font-size: 16px;   /* thoda bada for touch */
    padding: 10px;
  }

  .search-city button {
    padding: 10px 12px;
    font-size: 14px;
  }
}
/* Hero */
.hero-banner img {
  width:100%;
  height:auto;
  display:block;
}
intro.container {
  /* min-height removed so it adjusts to content automatically */
  padding: 20px 0; /* optional: spacing around content */
}
p {
  text-align: justify;
}
.ad-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ad-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  align-items: flex-start;
}

.ad-card img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.ad-info h3 {
  margin: 0 0 10px;
  color: #cc0066;
  border-bottom: 2px solid #cc0066;
  display: inline-block;
  padding-bottom: 3px;
  font-size: 20px;
}

.ad-info p {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.ad-info .short-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
  background: #fff0f6;
  padding: 10px 12px;
  border-left: 4px solid #cc0066;
  border-radius: 6px;
}

/* тЬЕ Mobile Responsive */
@media(max-width:768px){
  .ad-card {
    flex-direction: column;
    text-align: center;
  }
  .ad-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .ad-info h3 {
    font-size: 18px;
  }
}
/* тЬЕ Profile Action Buttons (Call & WhatsApp) */
.ad-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: flex-end; /* right side align */
}
.ad-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.call-icon { background: #cc0066; }
.whatsapp-icon { background: #25D366; }

.ad-actions a:hover {
  transform: scale(1.1);
}
@media(max-width:768px){
  .ad-card {
    flex-direction: column;
    text-align: center;
  }
  .ad-actions {
    justify-content: center; /* ЁЯСЙ mobile me center karne ke liye */
    margin-top: 15px;
  }
}
.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  align-items: flex-start;
}

.profile-card img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.profile-info h3 {
  margin: 0 0 10px;
  color: #cc0066;
  border-bottom: 2px solid #cc0066;
  display: inline-block;
  padding-bottom: 3px;
  font-size: 20px;
}

.profile-info p {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.profile-info .short-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
  background: #fff0f6;
  padding: 10px 12px;
  border-left: 4px solid #cc0066;
  border-radius: 6px;
}

/* тЬЕ Mobile Responsive */
@media(max-width:768px){
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .profile-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .profile-info h3 {
    font-size: 18px;
  }
}
/* тЬЕ Profile Action Buttons (Call & WhatsApp) */
.profile-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: flex-end; /* right side align */
}
.profile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.call-icon { background: #cc0066; }
.whatsapp-icon { background: #25D366; }

.profile-actions a:hover {
  transform: scale(1.1);
}
@media(max-width:768px){
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .profile-actions {
    justify-content: center; /* ЁЯСЙ mobile me center karne ke liye */
    margin-top: 15px;
  }
}
/* Gallery */
.grid-4 {display:grid; grid-template-columns:repeat(4,1fr); gap:15px;}
.girl-card {background:#fff0f6; padding:10px; border-radius:8px; text-align:center;}
.girl-card img {width:100%; height:auto; border-radius:8px;}
.girl-card p {color:#222;}

/* Cities */
.city-list {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  list-style:none;
  padding:0;
}
.city-list li a {
  background:#cc0066;
  color:#fff;
  padding:8px;
  display:block;
  text-align:center;
  border-radius:5px;
}

/* Pricing */
table {width:100%; border-collapse:collapse; margin-top:15px;}
table, th, td {border:1px solid #ccc;}
th, td {padding:10px; text-align:center; color:#222;}

/* Reviews */
.reviews blockquote {
  background:#f9f9f9;
  padding:10px;
  border-left:5px solid #cc0066;
  margin:10px 0;
  color:#222;
}

/* FAQ */
.faq details {
  margin:10px 0;
  padding:10px;
  border:1px solid #ddd;
  border-radius:5px;
  color:#222;
}

/* Tags */
.tag-list {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  list-style:none;
  padding:0;
}
.tag-list li a {
  background:#cc0066;
  color:#fff;
  padding:8px;
  display:block;
  text-align:center;
  border-radius:5px;
}

/* Fixed Buttons */
.fixed-buttons {
  position:fixed;
  bottom:15px;
  right:15px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:999;
}
.fixed-buttons a {
  padding:12px 18px;
  border-radius:30px;
  font-weight:bold;
  color:#fff;
  text-align:center;
  box-shadow:0 4px 8px rgba(0,0,0,0.2);
}
.call-btn {background:#cc0066;}
.whatsapp-btn {background:#cc0066;}

/* Responsive */
@media(max-width:768px){
  .menu ul {display:none; flex-direction:column; background:#cc0066; padding:10px;}
  .menu.active ul {display:flex;}
  .menu-toggle {display:block;}
  .grid-4 {grid-template-columns: 1fr;}
  .city-list {grid-template-columns:repeat(2,1fr);}
  .tag-list {grid-template-columns:repeat(2,1fr);}
}

/* Footer */
.footer {
  background:#cc0066;  /* darker pink */
  color:#fff;
  padding:40px 20px 20px;
  margin-top:40px;
}
.footer-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.footer-col h3 {
  font-size:20px;
  margin-bottom:15px;
  border-bottom:2px solid #fff;
  display:inline-block;
  padding-bottom:5px;
  color:#fff;
  font-weight:bold;
}
.footer-col p {margin:10px 0; line-height:1.6;}
.footer-col a {color:#fff; text-decoration:none;}
.footer-col a:hover {text-decoration:underline;}
.footer-links {list-style:none; padding:0; margin:0;}
.footer-links li {margin:8px 0;}
.footer-links a {
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}
.footer-links a:hover {
  color:#cc0066;
  background:#fff;
  padding:3px 6px;
  border-radius:4px;
}
/* Social Icons */
.social-links {margin-top:10px;}
.social-links a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:5px;
  background:rgba(255,255,255,0.2);
  padding:8px;
  border-radius:50%;
  transition:0.3s;
  width:36px;
  height:36px;
}
.social-links a svg {width:18px; height:18px; fill:#fff;}
.social-links a:hover {background:#fff;}
.social-links a:hover svg {fill:#cc0066;}
.dmca {margin-top:15px; max-width:120px;}
.footer-bottom {
  text-align:center;
  margin-top:20px;
  border-top:1px solid rgba(255,255,255,0.4);
  padding-top:15px;
  font-size:14px;
  background:#99004d; /* darkest pink strip */
}
@media(max-width:768px){
  .footer-grid {grid-template-columns:1fr; text-align:center;}
}
.short-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #444;          /* рдереЛрдбрд╝рд╛ readable dark grey */
  margin: 15px 0;
  background: #fff0f6;  /* рд╣рд▓реНрдХрд╛ pink background (branding рд╕реЗ match) */
  padding: 12px 15px;
  border-left: 4px solid #cc0066;  /* pink accent line */
  border-radius: 6px;
}

