* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
body { background: #fdf6f8; color: #222; }
a { color: inherit; }
.container { max-width: 900px; margin: 0 auto; padding: 0 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.top-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-row { display: flex; align-items: center; justify-content: space-between; position: relative; }
.logo { text-decoration: none; display: flex; align-items: baseline; gap: 6px; }
.logo-main { font-size: 24px; font-weight: 700; color: #0d7203; }
.logo-sub { font-size: 13px; color: #666; font-weight: 500; }
.nav-menu { display: flex; gap: 18px; align-items: center; }
.nav-menu a { text-decoration: none; color: #333; font-size: 14.5px; font-weight: 500; }
.nav-menu a:hover, .nav-menu a.active { color: #c2185b; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: #333; border-radius: 2px; }
.search-input { width: 100%; padding: 11px 14px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; margin-top: 10px; }
.filters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px; }
.filters select { width: 100%; padding: 10px 8px; border: 1px solid #ccc; border-radius: 6px; background: #fff; font-size: 13.5px; }
@media (min-width: 700px) { .filters { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; border: 1px solid #e0e0e0; border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 8px 0; margin-top: 10px; z-index: 200;
  }
  .nav-menu.show { display: flex; }
  .nav-menu a { padding: 13px 18px; width: 100%; border-bottom: 1px solid #f0f0f0; }
}

.breadcrumb { margin-top: 14px; font-size: 13px; color: #0d7203; }
.breadcrumb a { color: #0d7203; text-decoration: none; }
.profiles-list { display: flex; flex-direction: column; gap: 14px; padding: 16px 0 40px; }
.profile-card {
  display: flex; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
  overflow: hidden; position: relative; text-decoration: none; color: inherit;
}
.profile-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.08); }
.photo-box { width: 130px; min-width: 130px; height: 170px; position: relative; background: #f0f0f0; overflow: hidden; }
.photo-box img, .slide { width: 100%; height: 100%; object-fit: cover; }
.photo-count {
  position: absolute; bottom: 6px; left: 6px; background: rgba(0,0,0,0.7); color: #fff;
  font-size: 11px; padding: 2px 6px; border-radius: 3px;
}
.content { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.title { font-size: 14.5px; font-weight: 600; color: #0d7203; line-height: 1.3; margin-bottom: 5px; }
.title.promoted { border: 1.5px dashed #0d7203; padding: 4px 6px; border-radius: 4px; }
.desc {
  font-size: 12.5px; color: #444; line-height: 1.4; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.meta { font-size: 12px; color: #555; display: flex; flex-wrap: wrap; gap: 8px; }
.top-badge { position: absolute; top: 7px; right: 8px; background: #f5f5f5; border: 1px solid #ddd; font-size: 10px; padding: 1px 6px; border-radius: 3px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 10px 0 40px; flex-wrap: wrap; }
.pagination a, .pagination button {
  min-width: 38px; height: 38px; border: 1px solid #ddd; background: #fff; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none; cursor: pointer; color: #333;
}
.pagination a.active, .pagination button.active { background: #0d7203; color: #fff; border-color: #0d7203; }

.content-section { background: #fafafa; padding: 40px 0 50px; border-top: 1px solid #eee; }
.content-section h1 { font-size: 26px; font-weight: 700; margin-bottom: 18px; }
.content-section h2 { font-size: 20px; margin: 25px 0 12px; }
.content-section p, .content-section li { font-size: 15px; line-height: 1.7; color: #333; margin-bottom: 10px; }
.content-section ul, .content-section ol { margin: 12px 0 20px 20px; }
.content-section a { color: #c2185b; }

.tags-section, .faq-section { padding: 30px 0; border-top: 1px solid #eee; background: #fff; }
.faq-section { background: #fafafa; }
.tags-heading, .faq-heading { text-align: center; font-size: 24px; margin-bottom: 25px; color: #0d7203; }
.faq-heading { color: #111; }
.tags-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tag {
  background: #fff; border: 1.5px solid #0d7203; color: #0d7203; padding: 8px 18px;
  border-radius: 30px; text-decoration: none; cursor: pointer;
}
.tag:hover, .tag.active { background: #0d7203; color: #fff; }
.faq-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 12px; padding: 16px 18px; }
.faq-item h3 { font-size: 15.5px; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: #444; line-height: 1.6; }

.footer { background: #fff; border-top: 1px solid #e0e0e0; padding: 40px 0 30px; font-size: 14px; color: #555; }
.footer-disclaimer p { font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.footer-line { border: none; border-top: 1px solid #eee; margin: 25px 0; }
.footer-main { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-about { flex: 1; min-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.logo-text { font-size: 24px; font-weight: 700; color: #0d7203; }
.rta-badge { background: #757575; color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col h2, .footer-col h4 { font-size: 15px; margin-bottom: 12px; color: #222; }
.footer-col a { display: block; color: #555; text-decoration: none; font-size: 13.5px; margin-bottom: 8px; }
.footer-col a:hover { color: #0d7203; }

.floating-buttons { position: fixed; bottom: 25px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn {
  width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.whatsapp-btn { background: #25d366; color: #fff; }
.call-btn { background: #0d7203; color: #fff; }

.age-modal { position: fixed; inset: 0; background: rgba(0,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: 14px; }
.age-box p { color: #444; margin-bottom: 24px; line-height: 1.55; }
.age-buttons { display: flex; flex-direction: column; gap: 12px; }
.age-enter, .submit-btn { background: #0d7203; color: #fff; border: none; padding: 14px; font-size: 16px; font-weight: 600; border-radius: 8px; cursor: pointer; }
.age-exit { background: #f5f5f5; border: 1px solid #ddd; padding: 12px; border-radius: 8px; cursor: pointer; }

.inner-page { max-width: 800px; margin: 30px auto 50px; padding: 0 15px; }
.inner-page h1 { font-size: 28px; margin-bottom: 10px; }
.inner-page .subtitle { color: #666; margin-bottom: 24px; }
.inner-page h2 { font-size: 18px; color: #e91e63; margin: 28px 0 10px; }
.inner-page p, .inner-page li { font-size: 15px; line-height: 1.7; color: #444; margin-bottom: 12px; }
.inner-page ul, .inner-page ol { margin: 10px 0 18px 20px; }
.highlight-box { background: #fafafa; border: 1px solid #eee; border-radius: 8px; padding: 20px; margin: 25px 0; }
.contact-form, .admin-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; padding: 25px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; font-family: inherit;
}
.rate-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.rate-table th, .rate-table td { border: 1px solid #eee; padding: 10px 12px; text-align: left; }
.rate-table th { background: #f7f7f7; }
.rate-table td:last-child { font-weight: 600; color: #c2185b; }

.profile-detail { background: #fff; max-width: 480px; margin: 0 auto 40px; min-height: 70vh; border: 1px solid #eee; }
.modal-top { padding: 16px; }
.modal-age-loc { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.age-badge { background: #f0f0f0; padding: 4px 10px; border-radius: 20px; font-size: 13px; }
.modal-title { font-size: 18px; font-weight: 600; }
.modal-photo-box { position: relative; background: #111; }
.modal-img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.about-section { padding: 18px 16px; }
.action-buttons { display: flex; gap: 10px; padding: 0 16px 20px; }
.btn {
  flex: 1; padding: 13px 8px; border-radius: 8px; font-size: 15px; font-weight: 600;
  text-align: center; text-decoration: none; color: #fff;
}
.btn-call { background: #0d7203; flex: 1.4; }
.btn-whatsapp { background: #25d366; }
.photo-box::after, .modal-photo-box::after {
  content: "Mumbai Diana"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg); color: rgba(255,255,255,0.35);
  font-size: 16px; font-weight: 700; z-index: 5; pointer-events: none; white-space: nowrap;
}

.empty { text-align: center; padding: 40px; color: #777; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; background: #fff; }
.admin-table th, .admin-table td { border: 1px solid #eee; padding: 8px; text-align: left; vertical-align: top; }
.notice { background: #e8f5e9; border: 1px solid #c8e6c9; padding: 12px; border-radius: 8px; margin-bottom: 16px; }
.error { background: #ffebee; border: 1px solid #ffcdd2; padding: 12px; border-radius: 8px; margin-bottom: 16px; }
.small-btn {
  border: 1px solid #ddd; background: #fff; padding: 6px 10px; border-radius: 6px; cursor: pointer;
  margin-right: 6px; display: inline-block; text-decoration: none; font-size: 13px; color: #222;
}
.small-btn.danger { color: #c62828; }
.small-btn.ok { color: #0d7203; }
.submit-btn { width: 100%; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0 40px;
}
.location-card {
  background: #fff;
  border: 1.5px solid #0d7203;
  border-radius: 10px;
  padding: 16px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location-card:hover { background: #0d7203; color: #fff; }
.location-card strong { font-size: 16px; }
.location-card span { font-size: 13px; color: #666; }
.location-card:hover span { color: #e8f5e9; }

@media (max-width: 500px) {
  .photo-box { width: 115px; min-width: 115px; height: 155px; }
}
