* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.45;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 14px;
}

/* Navbar */
.navbar {
  background: #111;
  border-bottom: 2px solid #e91e63;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo span { color: #e91e63; }

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
}
.nav-links a:hover { color: #e91e63; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Filters */
.filters {
  background: #151515;
  padding: 18px 0;
  border-bottom: 1px solid #2a2a2a;
}

.search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.search-box input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.search-box input:focus { border-color: #e91e63; }

.search-box button {
  padding: 0 18px;
  background: #e91e63;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-btn {
  background: #222;
  border: 1px solid #444;
  color: #ddd;
  padding: 7px 13px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.cat-btn:hover,
.cat-btn.active {
  background: #e91e63;
  border-color: #e91e63;
  color: #fff;
}

/* Main List */
.main { padding: 22px 0 50px; }

.list-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.list-info h2 { font-size: 18px; }
.list-info p { color: #888; font-size: 13px; }

/* Profile Card - Same structure Mobile + Desktop */
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-card {
  display: flex;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.profile-card:hover { border-color: #e91e63; }

/* Left Image Gallery */
.card-gallery {
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 220px;
  background: #222;
  flex-shrink: 0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.gallery-img.active { display: block; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.55);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.gallery-nav.prev { left: 6px; }
.gallery-nav.next { right: 6px; }
.gallery-nav:hover { background: rgba(233,30,99,0.85); }

.gallery-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.dot.active { background: #e91e63; }

/* Right Content */
.card-content {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.card-cats {
  font-size: 12px;
  color: #e91e63;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13.5px;
  color: #ccc;
  flex: 1;
  margin-bottom: 10px;
  line-height: 1.5;
}

.card-location {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 12px;
}

.card-actions {
  display: flex;
  gap: 8px;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}
.btn-whatsapp { background: #25d366; }
.btn-call { background: #e91e63; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #222;
  border: 1px solid #444;
  color: #ddd;
  font-size: 14px;
  cursor: pointer;
}
.page-btn.active,
.page-btn:hover {
  background: #e91e63;
  border-color: #e91e63;
  color: #fff;
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: #111;
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* Mobile - keep same left-image + right-content structure */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }

  .profile-card {
    flex-direction: row; /* still side-by-side */
  }

  .card-gallery {
    width: 130px;
    min-width: 130px;
    height: 190px;
  }

  .card-content {
    padding: 10px 12px;
  }

  .card-title { font-size: 15px; }
  .card-desc { font-size: 12.5px; }
  .btn { padding: 8px 0; font-size: 12px; }
}
/* Content Section */
.content-section {
  padding: 40px 0 30px;
  background: #111;
  border-top: 1px solid #2a2a2a;
}
.content-section h1 {
  font-size: 30px;
  color: #e91e63;
  margin-bottom: 16px;
}
.content-section h2 {
  font-size: 25px;
  color: #e91e63;
  margin-bottom: 14px;
}
.content-section h3 {
  font-size: 20px;
  color: #e91e63;
  margin-bottom: 10px;
}
.content-section h4 {
  font-size: 18px;
  color: #e91e63;
  margin-bottom: 8px;
}
.content-section h5 {
  font-size: 15px;
  color: #e91e63;
  margin-bottom: 6px;
}
.content-section h6 {
  font-size: 15px;
  color: #e91e63;
  margin-bottom: 6px;
}
.content-section p {
  color: #ccc;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Rate Table */
.rate-section {
  padding: 35px 0;
  background: #0d0d0d;
}
.rate-section h2 {
  font-size: 20px;
  color: #e91e63;
  margin-bottom: 18px;
  text-align: center;
}
.rate-table-wrapper {
  overflow-x: auto;
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}
.rate-table th {
  background: #e91e63;
  color: #fff;
  padding: 13px 12px;
  font-size: 14px;
  text-align: left;
}
.rate-table td {
  padding: 12px;
  border-bottom: 1px solid #2e2e2e;
  font-size: 13.5px;
  color: #ddd;
}
.rate-table tr:last-child td {
  border-bottom: none;
}
.rate-table tr:hover td {
  background: #222;
}
.rate-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: #888;
  text-align: center;
}

/* Premium Service */
.premium-service {
  padding: 40px 0 50px;
  background: #111;
  border-top: 1px solid #2a2a2a;
}
.premium-service h2 {
  font-size: 20px;
  color: #e91e63;
  margin-bottom: 22px;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.service-card {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: #e91e63;
}
.service-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #fff;
}
.service-card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}
/* FAQ Section */
.faq-section {
  padding: 40px 0 50px;
  background: #0d0d0d;
  border-top: 1px solid #2a2a2a;
}

.faq-section h2 {
  font-size: 20px;
  color: #e91e63;
  margin-bottom: 22px;
  text-align: center;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: #e91e63;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.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 16px 14px;
  font-size: 13.5px;
  color: #bbb;
  line-height: 1.6;
}
/* ========== FOOTER ========== */
.site-footer {
  background: #111;
  border-top: 2px solid #e91e63;
  padding: 40px 0 25px;
  color: #ccc;
  font-size: 13.5px;
}

.footer-top {
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span {
  color: #e91e63;
}

.rta-badge {
  display: inline-block;
  background: #2a2a2a;
  color: #aaa;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-desc {
  max-width: 520px;
  line-height: 1.6;
  color: #999;
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: #999;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #e91e63;
}

/* Actions */
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #2a2a2a;
}

.boost-box h4,
.country-box h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.btn-post-ad {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-post-ad:hover {
  background: #c2185b;
}

.country-select {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #ddd;
  padding: 10px 14px;
  border-radius: 6px;
  min-width: 180px;
  font-size: 14px;
  outline: none;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visa-icon {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #1a73e8;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
}

.payment-info p {
  color: #777;
  font-size: 12.5px;
}

.back-to-top {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #ccc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.back-to-top:hover {
  border-color: #e91e63;
  color: #e91e63;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ========== LOCATION BAR ========== */
.location-bar {
  background: #151515;
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 0;
}

.location-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13.5px;
}

.loc-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.loc-link:hover {
  color: #e91e63;
}

.sep {
  color: #555;
  margin: 0 2px;
}

.city-dropdown-wrap {
  position: relative;
}

.city-dropdown {
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  padding: 6px 28px 6px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e91e63' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 160px;
}

.city-dropdown:focus {
  border-color: #e91e63;
}

@media (max-width: 640px) {
  .location-nav {
    font-size: 12.5px;
  }
  .city-dropdown {
    min-width: 140px;
    padding: 5px 26px 5px 10px;
  }
}
/* ========== PROFILE MODAL ========== */
.profile-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.profile-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.modal-content {
  position: relative;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 14px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #333;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
.modal-close:hover { background: #e91e63; }

.modal-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 16px 0;
  scroll-snap-type: x mandatory;
}
.modal-gallery img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.modal-body {
  padding: 20px;
}

.modal-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-cats {
  color: #e91e63;
  font-size: 13px;
  margin-bottom: 6px;
}

.modal-location {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 14px;
}

.modal-desc {
  color: #ccc;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-body h3 {
  font-size: 15px;
  color: #e91e63;
  margin-bottom: 10px;
}

.modal-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.modal-services li {
  background: #222;
  border: 1px solid #444;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  color: #ddd;
}

.modal-rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #151515;
  border-radius: 8px;
  overflow: hidden;
}
.modal-rate-table th {
  background: #e91e63;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
}
.modal-rate-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #2e2e2e;
  color: #ddd;
  font-size: 13.5px;
}
.modal-rate-table tr:last-child td { border-bottom: none; }

.modal-actions {
  display: flex;
  gap: 10px;
}
.modal-actions .btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.btn-whatsapp { background: #25d366; }
.btn-call { background: #e91e63; }

@media (max-width: 640px) {
  .modal-gallery img {
    width: 140px;
    height: 190px;
  }
  .modal-title { font-size: 17px; }
}
/* ========== AGE 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-box {
  background: #1a1a1a;
  border: 2px solid #e91e63;
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(233, 30, 99, 0.25);
}

.age-logo {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.age-logo span {
  color: #e91e63;
}

.age-box h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}

.age-box p {
  color: #ccc;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.age-btns {
  display: flex;
  gap: 12px;
  margin: 22px 0 16px;
}

.age-btn {
  flex: 1;
  padding: 13px 0;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.age-btn.yes {
  background: #e91e63;
  color: #fff;
}
.age-btn.yes:hover {
  background: #c2185b;
}

.age-btn.no {
  background: #333;
  color: #ddd;
  border: 1px solid #555;
}
.age-btn.no:hover {
  background: #444;
}

.age-note {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid #e91e63;
  border-radius: 12px;
  padding: 18px 20px;
  z-index: 99990;
  display: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.cookie-popup.show {
  display: block;
}

.cookie-content p {
  color: #ccc;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.cookie-btn.accept {
  background: #e91e63;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #c2185b;
}

.cookie-btn.decline {
  background: #2a2a2a;
  color: #ccc;
  border: 1px solid #444;
}
.cookie-btn.decline:hover {
  background: #333;
}

@media (max-width: 480px) {
  .age-box {
    padding: 24px 18px;
  }
  .age-btns {
    flex-direction: column;
  }
  .cookie-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
/* ========== ANCHOR TAGS ========== */
a {
  color: #e91e63;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff4d94;
  text-decoration: underline;
}

a:visited {
  color: #e91e63;
}

a:active {
  color: #c2185b;
}
/* ========== BOOKING PROCESS ========== */
.booking-process {
  padding: 45px 0 50px;
  background: #111;
  border-top: 1px solid #2a2a2a;
}

.booking-process h2 {
  font-size: 22px;
  color: #e91e63;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 14.5px;
  margin-bottom: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.process-card {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.process-card:hover {
  border-color: #e91e63;
  transform: translateY(-3px);
}

.process-number {
  width: 42px;
  height: 42px;
  background: #e91e63;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.process-card h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13.5px;
  color: #aaa;
  line-height: 1.55;
  margin: 0;
}

.booking-note {
  background: #1a1a1a;
  border: 1px solid #e91e63;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.booking-note strong {
  color: #e91e63;
}

@media (max-width: 600px) {
  .booking-process h2 {
    font-size: 20px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .process-card {
    padding: 18px 14px;
  }
  .process-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== FLOATING BUTTONS ========== */
.fresh-floating-actions {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 11px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 28px rgba(31,38,135,0.2);
}
.action-item {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.action-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.action-item img {
  width: 30px; height: 30px;
  object-fit: contain;
  transition: 0.3s;
}
.action-item:hover { transform: translateY(-4px); }
.phone-action:hover { background: #007bb5; }
.whatsapp-action:hover { background: #25d366; }
.action-item:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(0) invert(1);
}
.action-tooltip {
  position: absolute;
  right: 72px;
  background: #333;
  color: #fff;
  padding: 6px 11px;
  border-radius: 5px;
  font-size: 12.5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  transform: translateX(6px);
  pointer-events: none;
}
.action-tooltip::after {
  content: "";
  position: absolute;
  top: 50%; left: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left-color: #333;
}
.action-item:hover .action-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.pulse-dot {
  position: absolute;
  top: 3px; right: 3px;
  width: 12px; height: 12px;
  background: #ff3b30;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  width: 100%; height: 100%;
  background: #ff3b30;
  border-radius: 50%;
  animation: pulse 2s infinite ease-out;
  top: 0; left: 0;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.3); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .custom-text-box h1 { font-size: 1.6rem; }
  .section-title h2 { font-size: 1.45rem; }
}
@media (max-width: 767.98px) {
  .custom-mobile-slider { padding: 65px 12px 32px; }
  .verified-badge { top: 12px; right: 12px; padding: 5px 11px; font-size: 0.72rem; }
  .custom-text-box { padding: 20px; }
  .custom-text-box h1 { font-size: 1.3rem !important; }
  .slider-btn-group { flex-direction: column; }
  .slider-btn { width: 100%; text-align: center; }
  .section { padding: 36px 0; }
  .section-title h2 { font-size: 1.3rem; }
  .fresh-floating-actions {
    bottom: 16px; right: 14px;
    padding: 8px; gap: 10px;
  }
  .action-item { width: 50px; height: 50px; }
  .action-item img { width: 24px; height: 24px; }
  .action-tooltip { display: none; }
  .overall-score { font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .navbar-brand img { height: 38px; }
  .custom-text-box h1 { font-size: 1.15rem !important; }
}