/* Design 13 — Black & Yellow Premium Escort Directory */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  --yellow: #FFE100;
  --yellow-dim: rgba(255, 225, 0, 0.15);
  --yellow-border: rgba(255, 225, 0, 0.25);
  --yellow-glow: rgba(255, 225, 0, 0.35);
  --black: #000000;
  --card-bg: #0d0d0d;
  --card-bg-hover: #1a1a0a;
  --surface: #111111;
  --text-white: #ffffff;
  --text-muted: #b0b0a0;
  --text-dim: rgba(255, 255, 255, 0.4);
  --whatsapp: #25d366;
  --whatsapp-hover: #1eab52;
  --call-color: #FFE100;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.35s var(--ease);
}

/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Scroll Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for children */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }
.stagger-9 { transition-delay: 0.45s; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.logo i {
  color: var(--yellow);
  font-size: 1.3rem;
}

.logo span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.nav-badge {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 3rem 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 20px rgba(255, 225, 0, 0.3);
  font-style: italic;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 1.8rem;
  font-weight: 400;
}

/* Search Bar */
.hero-search {
  display: flex;
  width: 100%;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid var(--yellow-border);
  background: rgba(0, 0, 0, 0.5);
}

.hero-search input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
}

.hero-search input::placeholder {
  color: var(--text-dim);
}

.hero-search button {
  padding: 14px 30px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-search button:hover {
  background: #e6cc00;
}

/* ─────────────────────────────────────────
   SECTIONS — Shared
───────────────────────────────────────── */
section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 225, 0, 0.08);
}

section h2.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  text-align: center;
  margin-bottom: 0.4rem;
  font-style: italic;
}

section p.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

/* Yellow underline decoration */
.title-line {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 0.6rem auto 1.5rem;
  border-radius: 3px;
}

/* ─────────────────────────────────────────
   CONTENT WALL (Dark Card with Text)
───────────────────────────────────────── */
.content-wall-section {
  text-align: center;
}

.content-wall-section h2.section-title {
  font-size: 2rem;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card strong {
  color: var(--yellow);
}

.content-subheading {
  font-size: 1.4rem;
  color: var(--yellow);
  font-style: italic;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

/* ─────────────────────────────────────────
   PROFILE CARDS (2 columns, horizontal)
───────────────────────────────────────── */
.profiles-section .filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--yellow-border);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.filter-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.profile-card {
  background: var(--text-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  color: #1a1a1a;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 225, 0, 0.15);
}

.profile-card-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 380px;
  flex-shrink: 0;
}

.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease);
}

.profile-card:hover .profile-card-img img {
  transform: scale(1.06);
}

.card-heart {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-heart:hover,
.card-heart.liked {
  color: #e21c5a;
}

.profile-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: space-between;
}

.profile-card-body h3,
.profile-card-body .pc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-family: inherit;
}

.profile-category {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #b89e00;
  margin-bottom: 4px;
  display: block;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 4px;
  align-items: center;
}

.profile-meta i {
  margin-right: 2px;
  color: #b89e00;
}

.profile-meta .rating-stars {
  color: #b89e00;
}

.profile-likes {
  font-size: 0.8rem;
  color: #e21c5a;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-likes i {
  margin-right: 3px;
}

.profile-btn-group {
  display: flex;
  gap: 8px;
}

.btn-contact {
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-contact-primary {
  background: var(--whatsapp);
  color: var(--text-white);
}

.btn-contact-primary:hover {
  background: var(--whatsapp-hover);
}

.btn-contact-outline {
  background: transparent;
  color: #333;
  border: 1.5px solid #ccc;
}

.btn-contact-outline:hover {
  border-color: #b89e00;
  color: #b89e00;
}

/* ─────────────────────────────────────────
   RATES TABLE
───────────────────────────────────────── */
.rates-section {
  text-align: center;
}

.rates-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--yellow-border);
  max-width: 900px;
  margin: 0 auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.rates-table thead th {
  background: var(--card-bg);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-bottom: 2px solid var(--yellow-border);
}

.rates-table tbody td {
  padding: 13px 20px;
  background: rgba(13, 13, 13, 0.6);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 225, 0, 0.06);
}

.rates-table tbody tr:last-child td {
  border-bottom: none;
}

.rates-table tbody tr:hover td {
  background: rgba(255, 225, 0, 0.04);
}

.rates-table .rate-highlight {
  color: var(--yellow);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-section {
  text-align: center;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 225, 0, 0.08);
}

.faq-item summary {
  padding: 16px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: var(--font-heading);
  color: var(--text-white);
  transition: var(--transition);
}

.faq-item summary:hover {
  color: var(--yellow);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--yellow);
  font-weight: 700;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 22px 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 225, 0, 0.06);
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   TAGS CLOUD
───────────────────────────────────────── */
.tags-section {
  text-align: center;
}

.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.tag-pill {
  background: rgba(255, 225, 0, 0.06);
  border: 1px solid var(--yellow-border);
  color: var(--text-white);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag-pill::before {
  content: "#";
  color: var(--yellow);
  font-weight: 700;
}

.tag-pill:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(255, 225, 0, 0.3);
}

.tag-pill:hover::before {
  color: var(--black);
}

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
.services-section {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--yellow-border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px var(--yellow-glow);
  border-color: var(--yellow);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-overlay-text {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.service-overlay-text h3 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  font-family: var(--font-heading);
}

.services-action {
  margin-top: 1rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 32px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-view-all:hover {
  background: #e6cc00;
  box-shadow: 0 0 20px var(--yellow-glow);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: 1rem 0;
  text-align: center;
}

.footer p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer a {
  color: var(--yellow);
}

.footer a:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────
   FLOATING ACTIONS
───────────────────────────────────────── */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  transition: var(--transition);
}

.float-call {
  background: var(--yellow);
}

.float-call:hover {
  background: #e6cc00;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 225, 0, 0.5);
}

.float-wa {
  background: var(--whatsapp);
  color: var(--text-white);
}

.float-wa:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* ─── 18+ Age Gate Popup ─── */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}

.age-gate-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-modal {
  background: var(--card-bg);
  border: 1px solid var(--yellow);
  outline: 3px double var(--yellow);
  outline-offset: 4px;
  border-radius: 4px;
  max-width: 480px;
  width: 90%;
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 225, 0, 0.15);
  transform: scale(1);
  transition: transform 0.4s ease;
  position: relative;
}

.age-gate-overlay.hidden .age-gate-modal {
  transform: scale(0.9);
}

.age-badge-diamond {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--black);
  margin: -60px auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: rotate(45deg);
  box-shadow: 0 0 25px rgba(255, 225, 0, 0.5);
  border: 2px solid var(--black);
  position: relative;
}

.age-badge-diamond i {
  transform: rotate(-45deg);
}

.age-badge-diamond::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--yellow);
}

.age-gate-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.8rem;
}

.age-gate-logo span {
  color: var(--yellow);
}

.age-gate-warning {
  background: rgba(255, 225, 0, 0.05);
  color: var(--yellow);
  padding: 6px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 225, 0, 0.2);
}

.age-gate-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.age-gate-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-gate-btn {
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  border-radius: 0px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-enter {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(255, 225, 0, 0.25);
  border: 1px solid var(--yellow);
}

.btn-enter:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 225, 0, 0.4);
}

.btn-exit {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-exit:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .profile-card-body h3 {
    font-size: 1.05rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Small tablet / Large phone */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 1rem 0;
    border-bottom: 2px solid var(--yellow);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 1rem;
    border-bottom: none;
  }

  .nav-badge {
    margin: 0.5rem auto;
    display: inline-block;
  }

  .nav-toggle {
    display: block;
  }

  .navbar {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 45vh;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }

  .profile-card-img {
    height: 220px;
  }

  .content-card {
    padding: 1.5rem;
  }

  section h2.section-title {
    font-size: 1.4rem;
  }

  .rates-table thead th,
  .rates-table tbody td {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
}

/* Phone */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
 

  .hero-search input {
    border-bottom: 1px solid var(--yellow-border);
  }

  .hero-search button {
    padding: 12px;
  }

  .profile-card {
    flex-direction: column;
    min-height: auto;
  }

  .profile-card-img {
    flex: 0 0 380px;
    max-width: 100%;
    height: 420px;
  }

  .profile-card-body {
    padding: 14px;
  }

  .content-card {
    padding: 1.2rem 1rem;
  }

  .filter-bar {
    flex-wrap: wrap;
  }

  .rates-table thead th,
  .rates-table tbody td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  section {
    padding: 2rem 0;
  }
}
