* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Logo */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #e91e63;
}

.logo-sub {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

#searchInput {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

/* ===== FILTERS (Updated for 4 filters) ===== */
.filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.filters select {
  width: 100%;
  padding: 10px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 13.5px;
  cursor: pointer;
}

/* Desktop pe 4 filters ek line mein */
@media (min-width: 700px) {
  .filters {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .filters select {
    font-size: 14px;
    padding: 10px;
  }
}

/* ===== PAGE HEADER ===== */
.breadcrumb {
  margin-top: 14px;
  font-size: 13px;
  color: #e91e63;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin: 6px 0 16px;
  color: #222;
}

/* ===== PROFILE LIST ===== */
.profiles-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
}

.profile-card {
  display: flex;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.profile-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

/* ===== IMAGE SLIDER ===== */
.photo-box {
  width: 130px;
  min-width: 130px;
  height: 170px;
  position: relative;
  background: #f0f0f0;
  flex-shrink: 0;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.photo-count {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  z-index: 2;
}
/* Content */
.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: #e91e63;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title.promoted {
  border: 1.5px dashed #e91e63;
  padding: 4px 6px;
  border-radius: 4px;
}

.desc {
  font-size: 12.5px;
  color: #444;
  line-height: 1.4;
  margin-bottom: 8px;
  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;
  align-items: center;
}

.meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Top badge */
.top-badge {
  position: absolute;
  top: 7px;
  right: 8px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 3px;
  color: #666;
}

/* ===== MODAL - Skokka Style ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #f5f5f5;
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 30px;
}

.close-btn {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Top info */
.modal-top {
  padding: 16px 16px 10px;
}

.modal-age-loc {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.age-badge {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 4px;
}

.loc-text {
  font-size: 13.5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
  margin-bottom: 4px;
}

/* Photo */
.modal-photo-box {
  position: relative;
  width: 100%;
  background: #111;
}

.modal-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.show-all-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

/* About section */
.about-section {
  padding: 18px 16px;
}

.about-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 10px;
  padding: 0 16px 20px;
  margin-top: 10px;
}

.btn {
  flex: 1;
  padding: 13px 8px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-call {
  background: #e91e63;
  flex: 1.4;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-telegram {
  background: #0088cc;
  flex: 0.7;
}

/* ===== MOBILE ===== */
@media (max-width: 500px) {
  .photo-box {
    width: 115px;
    min-width: 115px;
    height: 155px;
  }

  .content {
    padding: 9px 10px;
  }

  .title {
    font-size: 13.5px;
  }

  .desc {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  .meta {
    font-size: 11.5px;
    gap: 6px;
  }

  .page-title {
    font-size: 22px;
  }
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}

.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination button:hover:not(:disabled) {
  background: #f5f5f5;
}

.pagination button.active {
  background: #e91e63;
  color: #fff;
  border-color: #e91e63;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  background: #fafafa;
  padding: 40px 0 50px;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.content-section h1 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.3;
}

.content-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 12px;
}

.content-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.content-section ul {
  margin: 12px 0 20px 20px;
  padding: 0;
}

.content-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
}

@media (max-width: 500px) {
  .content-section {
    padding: 30px 0 40px;
  }

  .content-section h1 {
    font-size: 22px;
  }

  .content-section h2 {
    font-size: 18px;
  }
}

/* ===== TAGS SECTION ===== */
.tags-section {
  background: #fff;
  border-top: 1px solid #eee;
}

.tags-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tags-icon {
  font-size: 26px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  background: #fff;
  border: 1.5px solid #e91e63;
  color: #e91e63;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.tag:hover {
  background: #e91e63;
  color: #fff;
}

@media (max-width: 500px) {
  .tags-heading {
    font-size: 20px;
  }

  .tag {
    padding: 7px 14px;
    font-size: 13px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fafafa;
  border-top: 1px solid #eee;
}

.faq-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 30px;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: #e91e63;
  transition: transform 0.25s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 18px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 500px) {
  .faq-heading {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14.5px;
    padding: 14px 15px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0 30px;
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 25px;
}

.footer-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 12px;
}

.footer-line {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 35px;
}

.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: #e91e63;
}

.rta-badge {
  background: #9e9e9e;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.footer-about p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #e91e63;
}

/* Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  padding-top: 10px;
}

.boost-box h4,
.countries-box h4 {
  font-size: 14px;
  font-weight: 600;
}
/* ===== FLOATING BUTTONS ===== */
.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);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
}

.call-btn {
  background: #e91e63;
  color: white;
}

/* Mobile pe thoda chhota */
@media (max-width: 500px) {
  .floating-buttons {
    bottom: 20px;
    right: 15px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}