* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f8fa;
  color: #1a1a2e;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP HEADER ========== */
.top-header {
  background: #fff;
  padding: 1px 0;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo span {
  color: #e91e63;
}

.logo small {
  font-size: 11px;
  background: #e91e63;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
}

.btn-post {
  background: #2196f3;
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-post:hover {
  background: #1976d2;
}

/* ========== HERO ========== */
.hero {
  height: 520px;
  background: url('images/girlsplace-banner.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-content h1 span {
  font-size: 72px;
  font-weight: 800;
  display: block;
  letter-spacing: -1px;
}

.hero-search {
  margin-top: 30px;
  display: flex;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 15px;
  outline: none;
}

.search-btn {
  background: #e91e63;
  border: none;
  color: #fff;
  padding: 0 22px;
  font-size: 18px;
  cursor: pointer;
}

/* ========== SECTION TITLE ========== */
.section-title {
  text-align: center;
  padding: 50px 0 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
}

.section-title p {
  color: #666;
  margin-top: 6px;
}

/* ========== CATEGORY CARDS ========== */
.categories-section {
  padding-bottom: 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.cat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.cat-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cat-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  color: #e91e63;
}

.cat-body {
  padding: 20px;
}

.cat-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-pills a {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid #e91e63;
  border-radius: 50px;
  color: #e91e63;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
}

.city-pills a:hover {
  background: #e91e63;
  color: #fff;
}

/* ========== FOOTER ========== */
.footer {
  background: #fff;
  padding: 50px 0 20px;
  border-top: 1px solid #eee;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 20px;
  margin-bottom: 10px;
}

.rta-badge {
  display: inline-block;
  background: #9e9e9e;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  max-width: 360px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.footer-links a {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #e91e63;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.btn-post-large {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-top: 10px;
}

.footer-middle select {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  min-width: 180px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}

.payment span {
  margin-right: 12px;
  font-weight: 600;
}

.social a {
  margin-left: 15px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content h1 span {
    font-size: 52px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    height: 420px;
  }
  .hero-content h1 span {
    font-size: 42px;
  }
  .footer-middle {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
/* ========== Welcome + Category Pills Section ========== */
.welcome-section {
  padding: 40px 0 50px;
  background: #f7f8fa;
}

.welcome-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.welcome-text strong {
  color: #e91e63;
}

.cat-block {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: center;
}

.cat-title {
  font-size: 22px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 18px;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.city-pills a {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid #e91e63;
  border-radius: 50px;
  color: #e91e63;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.city-pills a:hover {
  background: #e91e63;
  color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
  .welcome-text {
    font-size: 14px;
    padding: 0 10px;
  }
  
  .cat-title {
    font-size: 19px;
  }
  
  .city-pills a {
    padding: 7px 14px;
    font-size: 13px;
  }
}
/* ========== AGE VERIFICATION GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.hidden {
  display: none;
}

.age-box {
  background: #fff;
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.age-icon {
  width: 70px;
  height: 70px;
  background: #e91e63;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.age-box h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.age-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0 15px;
}

.btn-enter {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-enter:hover {
  background: #c2185b;
}

.btn-exit {
  background: transparent;
  color: #666;
  border: 1.5px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.btn-exit:hover {
  background: #f5f5f5;
}

.age-note {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  z-index: 99990;
  padding: 18px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 14px;
  margin: 0;
  flex: 1;
  min-width: 260px;
  line-height: 1.5;
}

.cookie-content a {
  color: #e91e63;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-accept:hover {
  background: #c2185b;
}

.btn-reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-reject:hover {
  background: #333;
}

/* ========== RTA BADGE ========== */
.rta-badge {
  display: inline-flex;
  align-items: center;
  background: #757575;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 600px) {
  .age-box {
    padding: 30px 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
/* Page Header */
.page-header {
  background: #fff;
  padding: 40px 0 30px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-header h1 {
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
  font-size: 16px;
}

/* City Grid */
.city-section {
  padding: 40px 0;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.city-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.city-card:hover {
  border-color: #e91e63;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(233,30,99,0.12);
}

.city-card h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.city-card span {
  font-size: 13px;
  color: #e91e63;
}

/* Breadcrumb */
.breadcrumb {
  background: #f8f9fa;
  padding: 12px 0;
  font-size: 14px;
}

.breadcrumb a {
  color: #e91e63;
  text-decoration: none;
}

.breadcrumb span {
  color: #666;
}

/* Filters */
.filters {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.filters .container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filters select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  min-width: 150px;
}

.btn-filter {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

/* Other Categories */
.other-cats {
  padding: 40px 0;
  text-align: center;
}

.other-cats h2 {
  margin-bottom: 20px;
}

.other-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.other-links a {
  padding: 10px 20px;
  border: 1.5px solid #e91e63;
  border-radius: 50px;
  color: #e91e63;
  text-decoration: none;
  font-weight: 500;
}

.other-links a:hover {
  background: #e91e63;
  color: #fff;
}

/* Nearby */
.nearby {
  padding: 30px 0 50px;
  text-align: center;
}

.nearby h3 {
  margin-bottom: 15px;
}
/* ========== SEARCH MODAL ========== */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99980;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 15px;
  overflow-y: auto;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  margin-top: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

/* Header */
.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.search-title {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}

/* Top Selects */
.search-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  padding: 16px 20px 10px;
}

.search-top select,
.search-top input {
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.search-top select:focus,
.search-top input:focus {
  border-color: #e91e63;
}

/* Location */
.search-location {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 0 20px 16px;
}

.search-location select {
  padding: 11px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
}

.search-location select:disabled {
  background: #f5f5f5;
  color: #aaa;
}

/* Filters */
.filters-section {
  border-top: 1px solid #eee;
  padding: 10px 0;
}

.filters-title {
  padding: 8px 20px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
}

.filter-item {
  border-bottom: 1px solid #f0f0f0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  transition: 0.2s;
}

.filter-header:hover {
  background: #fafafa;
}

.filter-header .arrow {
  font-size: 18px;
  color: #e91e63;
  transition: transform 0.25s;
}

.filter-item.open .arrow {
  transform: rotate(90deg);
}

.filter-options {
  display: none;
  padding: 5px 20px 15px;
  background: #fafafa;
}

.filter-item.open .filter-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* Footer Buttons */
.search-modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
}

.btn-delete {
  flex: 1;
  background: none;
  border: none;
  color: #e91e63;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 12px;
}

.btn-search-main {
  flex: 2;
  background: #e91e63;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-search-main:hover {
  background: #c2185b;
}

/* Mobile */
@media (max-width: 500px) {
  .search-top {
    grid-template-columns: 1fr;
  }
  .search-location {
    grid-template-columns: 1fr;
  }
  .filter-item.open .filter-options {
    grid-template-columns: 1fr;
  }
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    body {
      background: #f4f6f8;
      color: #222;
      line-height: 1.5;
    }

    /* ========== NAVBAR ========== */
    .navbar {
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #e91e63;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo span {
      color: #333;
    }

    .search-box {
      flex: 1;
      max-width: 480px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 10px 16px 10px 42px;
      border: 1px solid #ddd;
      border-radius: 30px;
      font-size: 15px;
      outline: none;
      transition: border 0.2s;
    }

    .search-box input:focus {
      border-color: #e91e63;
    }

    .search-box::before {
      content: "🔍";
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
    }

    .post-btn {
      background: #e91e63;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .post-btn:hover {
      background: #c2185b;
    }

    /* ========== FILTERS ========== */
    .filters {
      max-width: 1200px;
      margin: 20px auto 10px;
      padding: 0 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .filters select {
      padding: 9px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: white;
      font-size: 14px;
      cursor: pointer;
      min-width: 140px;
    }

    .filters select:focus {
      outline: none;
      border-color: #e91e63;
    }

    .result-count {
      margin-left: auto;
      font-size: 14px;
      color: #666;
    }

    /* ========== LISTING ========== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      
    }

    .profile-card {
      background: white;
      border-radius: 14px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.06);
      display: flex;
      overflow: hidden;
      margin-bottom: 18px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .profile-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /* Image Gallery */
    .image-section {
      width: 260px;
      min-width: 260px;
      position: relative;
      background: #eee;
    }

    .image-wrapper {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.3s;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: rgba(0,0,0,0.35);
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s, background 0.2s;
      z-index: 5;
    }

    .image-section:hover .nav-arrow {
      opacity: 1;
    }

    .nav-arrow:hover {
      background: rgba(0,0,0,0.6);
    }

    .nav-arrow.prev {
      left: 10px;
    }

    .nav-arrow.next {
      right: 10px;
    }

    .image-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 5;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
    }

    .dot.active {
      background: white;
    }

    /* Content */
    .content-section {
      flex: 1;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
    }

    .title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #e91e63;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 13px;
      color: #555;
    }

    .badge {
      background: #fce4ec;
      color: #c2185b;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }

    .description {
      font-size: 14.5px;
      color: #444;
      margin-bottom: 12px;
      flex: 1;
    }

    .location {
      font-size: 13.5px;
      color: #666;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .location::before {
      content: "📍";
    }

    .action-buttons {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .btn {
      flex: 1;
      padding: 10px;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.2s;
      text-decoration: none;
      color: white;
    }

    .btn-call {
      background: #2196f3;
    }

    .btn-call:hover {
      background: #1976d2;
    }

    .btn-whatsapp {
      background: #25d366;
    }

    .btn-whatsapp:hover {
      background: #1da851;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .page-btn {
      width: 40px;
      height: 40px;
      border: 1px solid #ddd;
      background: white;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s;
    }

    .page-btn.active,
    .page-btn:hover {
      background: #e91e63;
      color: white;
      border-color: #e91e63;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-container {
        flex-wrap: wrap;
      }

      .search-box {
        order: 3;
        max-width: 100%;
        width: 100%;
      }

      .profile-card {
        flex-direction: column;
      }

      .image-section {
        width: 100%;
        min-width: 100%;
        height: 280px;
      }

      .content-section {
        padding: 14px 16px;
      }

      .title {
        font-size: 1.05rem;
      }

      .filters {
        justify-content: flex-start;
      }

      .result-count {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
      }
    }
  