@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: #222; }
a { color: inherit; }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.header {
  background: #fff;
  border-bottom: 3px solid #f70058;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  color: #4f10b0;
  letter-spacing: -0.5px;
}
.logo span { color: #f70058; }
.header-actions { display: flex; gap: 10px; }
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 27px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.btn-post { background: #f70058; animation: jiggling 1s infinite; }
.btn-login { background: #4f10b0; }
@keyframes jiggling {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.search-section {
  background: #f70058;
  color: #fff;
  padding: 36px 16px 28px;
  text-align: center;
}
.search-section h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
}
.search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.search-form select, .search-form input[type="search"] {
  min-width: 180px;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
.search-form button {
  background: #fff;
  color: #111;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.profile-cards { padding: 24px 0 10px; }
.md-card {
  display: flex;
  gap: 14px;
  border: 2px solid #f70058;
  border-radius: 6px;
  padding: 8px;
  margin: 16px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  background: #fff;
}
.md-card-img {
  width: 150px;
  min-width: 150px;
  height: 176px;
  object-fit: cover;
  border: 1px solid #f70058;
}
.md-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.md-card-body h2, .md-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.md-card-body h2 a, .md-card-body h3 a { text-decoration: none; color: #111; }
.md-card-text {
  font-size: 14px;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 10px;
  flex: 1;
}
.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  background: #4f10b0;
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}
.md-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.btn-wa, .btn-callnow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}
.btn-wa { background: #25d366; }
.btn-callnow { background: #f70058; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 24px 0; flex-wrap: wrap; }
.pagination a {
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #ddd; border-radius: 6px; text-decoration: none;
}
.pagination a.active { background: #4f10b0; color: #fff; border-color: #4f10b0; }

.content-area { background: #4f10b0; color: #fff; padding: 36px 0; margin-top: 20px; }
.content-area h2, .content-area h1 { text-align: center; margin-bottom: 16px; }
.content-area p, .content-area li { line-height: 1.7; margin-bottom: 10px; }
.content-area a { color: #fff; }

.city-wrap { background: #f8f9fa; padding: 40px 0; }
.city-heading {
  text-align: center;
  background: #4f10b0;
  color: #fff;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 22px;
  margin: 0 auto 20px;
}
.city-center { text-align: center; }
.city-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.city-button {
  background: #f70058;
  color: #fff !important;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 500;
}
.city-button:hover { background: #4f10b0; }

.faq-section { padding: 30px 0 40px; }
.faq-heading { text-align: center; margin-bottom: 20px; }
.faq-item { background: #f8f9fa; border-radius: 8px; padding: 16px; margin-bottom: 10px; }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; color: #4f10b0; }

.footer {
  background: #4f10b0;
  color: #fff;
  padding: 40px 0 20px;
  border-top-left-radius: 70px;
  margin-top: 20px;
  font-size: 14px;
}
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { color: #FB2576; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.footer h2 { font-size: 18px; margin-bottom: 12px; }
.footer-grid a { display: block; margin-bottom: 8px; }
.footer-copy { text-align: center; border-top: 1px solid rgba(255,255,255,.3); padding-top: 16px; font-size: 13px; }

.inner-page { max-width: 860px; margin: 28px auto 50px; padding: 0 16px; }
.inner-page h1 { font-size: 28px; margin-bottom: 10px; color: #4f10b0; }
.inner-page .subtitle { color: #666; margin-bottom: 20px; }
.inner-page h2 { font-size: 18px; color: #f70058; margin: 22px 0 10px; }
.inner-page p, .inner-page li { line-height: 1.7; margin-bottom: 10px; }
.inner-page ul, .inner-page ol { margin-left: 20px; }
.highlight-box { background: #f8f9fa; border: 1px solid #eee; border-radius: 8px; padding: 18px; margin: 18px 0; }
.contact-form { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-family: inherit; font-size: 15px;
}
.submit-btn {
  width: 100%; background: #f70058; color: #fff; border: none; padding: 13px; border-radius: 8px; font-weight: 700; cursor: pointer;
}
.rate-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.rate-table th, .rate-table td { border: 1px solid #eee; padding: 10px; text-align: left; }
.rate-table th { background: #f7f7f7; }
.rate-table td:last-child { color: #f70058; font-weight: 600; }
.notice { background: #e8f5e9; padding: 12px; border-radius: 8px; margin-bottom: 12px; }
.error { background: #ffebee; padding: 12px; border-radius: 8px; margin-bottom: 12px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th, .admin-table td { border: 1px solid #eee; padding: 8px; vertical-align: top; }
.small-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 4px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  color: #222;
}
.small-btn.danger { color: #c62828; }
.small-btn.ok { color: #0d7203; }
.empty { text-align: center; padding: 40px; color: #777; }

/* Profile page — original layout in Mumbai Diana colours */
.profile-page { max-width: 1100px; margin: 20px auto 50px; padding: 0 15px; }
.crumbs { font-size: 13px; color: #666; margin-bottom: 14px; }
.crumbs a { color: #4f10b0; text-decoration: none; }
.profile-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  background: #fff;
  border: 2px solid #f70058;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(79,16,176,.08);
}
.profile-gallery { background: #111; }
.profile-main-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: #1a1a1a; }
.thumbs img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 6px; cursor: pointer;
  border: 2px solid transparent; opacity: .75;
}
.thumbs img.active, .thumbs img:hover { border-color: #f70058; opacity: 1; }
.profile-info { padding: 24px 22px 20px; }
.profile-info h1 { font-size: 26px; color: #111; line-height: 1.3; margin-bottom: 12px; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.stat-table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; }
.stat-table th, .stat-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid #f0e6ee; font-size: 14px; }
.stat-table th { color: #666; font-weight: 500; width: 38%; }
.stat-table td { font-weight: 600; color: #4f10b0; }
.profile-desc { font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 18px; }
.profile-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-cta a { flex: 1; justify-content: center; padding: 14px; font-size: 16px; }
.related { margin-top: 36px; }
.related h2 { font-size: 22px; color: #4f10b0; margin-bottom: 12px; }
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff; padding: 10px 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.12);
  gap: 8px; z-index: 50;
}
.sticky-cta a { flex: 1; justify-content: center; }

.age-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px;
}
.age-box { background: #fff; max-width: 420px; width: 100%; border-radius: 12px; padding: 32px 26px; text-align: center; }
.age-box h2 { margin-bottom: 12px; }
.age-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.age-enter { background: #f70058; color: #fff; border: none; padding: 14px; border-radius: 8px; font-weight: 700; cursor: pointer; }
.age-exit { background: #f5f5f5; border: 1px solid #ddd; padding: 12px; border-radius: 8px; cursor: pointer; }

@media (max-width: 800px) {
  .profile-hero { grid-template-columns: 1fr; }
  .profile-main-photo { height: 340px; }
  .sticky-cta { display: flex; }
  .profile-cta { display: none; }
  .md-card-img { width: 100px; min-width: 100px; height: 165px; }
  .md-card-body h2, .md-card-body h3 { font-size: 15px; }
  .search-section h1 { font-size: 22px; }
  .logo { font-size: 20px; }
  .btn-pill { padding: 7px 12px; font-size: 13px; }
  .footer { border-top-left-radius: 36px; }
  .profile-page { padding-bottom: 80px; }
}
