/* =============================================
   DELHI CALL GIRLS LO — PREMIUM DESIGN SYSTEM v2
   Light Theme · Enterprise · Mobile-First · SEO
   ============================================= */

/* ----- CSS CUSTOM PROPERTIES ----- */
:root {
  /* Brand Palette */
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;

  /* Indigo Accent */
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;

  /* Emerald Success */
  --emerald-50: #ecfdf5;
  --emerald-500: #10b981;
  --emerald-600: #059669;

  /* Neutral */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* Theme Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.97);
  --bg-overlay: rgba(15, 23, 42, 0.5);

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  --text-accent: var(--rose-500);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #be123c 100%);
  --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --gradient-amber: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-hero: linear-gradient(135deg, #fef2f2 0%, #fff1f2 50%, #f8fafc 100%);
  --gradient-card: #ffffff;
  --gradient-glow: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(99, 102, 241, 0.04));

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -4px rgba(0, 0, 0, 0.04);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --container: 1200px;
  --container-narrow: 900px;
  --header-height: 68px;
}

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-500); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--rose-600); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----- CONTAINER ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-500);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* ----- SECTION ----- */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 5rem 0; }
}

@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-tertiary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ----- BUTTONS ----- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(244, 63, 94, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.btn-secondary:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.btn-outline {
  background: transparent;
  color: var(--rose-500);
  border: 1.5px solid var(--rose-200);
}
.btn-outline:hover {
  background: var(--rose-50);
  border-color: var(--rose-300);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--text-primary); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  color: var(--white);
}

.btn-phone {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.25);
}
.btn-phone:hover {
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  color: var(--white);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; border-radius: var(--radius-md); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius-xl); }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.0625rem; border-radius: var(--radius-xl); }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-lg); display: inline-flex; align-items: center; justify-content: center; }

/* ----- CARDS ----- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--rose-500);
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.card p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.card-hover-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rose-500);
  margin-top: 0.75rem;
  transition: var(--transition-base);
}
.card-hover-arrow .arrow { transition: var(--transition-base); }
.card:hover .card-hover-arrow .arrow { transform: translateX(4px); }

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ----- GLASS CARD ----- */
.glass-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

/* ----- GLOW DIVIDER ----- */
.glow-divider {
  width: 48px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin: 0 auto 0.75rem;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition-base);
  height: var(--header-height);
}

.navbar.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.navbar .logo:hover { color: var(--text-primary); }

.navbar .logo-text { display: inline; }
.navbar .logo-text span { color: var(--rose-500); }

/* Desktop Nav */
.nav-menu {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rose-500);
  background: var(--rose-50);
}

/* Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  background: none;
  border: none;
}

.nav-dropdown-toggle:hover {
  color: var(--rose-500);
  background: var(--rose-50);
}

.nav-dropdown-toggle .chevron {
  font-size: 0.625rem;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .chevron,
.nav-dropdown.active .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: var(--transition-base);
  text-decoration: none;
}

.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--rose-500);
}

/* Nav Search */
.nav-search {
  display: none;
  flex: 1;
  max-width: 320px;
  position: relative;
}

.nav-search input {
  width: 100%;
  padding: 0.5rem 0.875rem 0.5rem 2.25rem;
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-base);
}

.nav-search input:focus {
  border-color: var(--rose-200);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.06);
}

.nav-search input::placeholder { color: var(--text-muted); }

.nav-search .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8125rem;
  pointer-events: none;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.nav-toggle:hover { background: var(--gray-200); }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-search { display: block; }
  .nav-toggle { display: none; }
}

@media (min-width: 1200px) {
  .nav-search { max-width: 400px; }
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-base);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  transition: var(--transition-slow);
}
.mobile-nav.open { right: 0; }
.mobile-nav.open { box-shadow: var(--shadow-2xl); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.125rem;
  cursor: pointer;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition-base);
  text-decoration: none;
}
.mobile-nav a:hover {
  background: var(--gray-50);
  color: var(--rose-500);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.75rem 0;
}

.mobile-nav .btn {
  margin: 0.375rem 0;
  width: 100%;
  justify-content: center;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: auto;
}

@media (min-width: 768px) {
  .hero { padding: calc(var(--header-height) + 3rem) 0 4rem; }
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose-600);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.25vw, 1.125rem);
  color: var(--text-tertiary);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Hero Search */
.hero-search {
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.hero-search-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .hero-search-box {
    flex-direction: row;
    align-items: center;
  }
}

.hero-search-box:focus-within {
  border-color: var(--rose-200);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(244, 63, 94, 0.06);
}

.hero-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
}

.hero-search-field .icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.hero-search-field select,
.hero-search-field input {
  padding: 0.625rem 0;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--text-primary);
  outline: none;
  width: 100%;
}

.hero-search-field select {
  cursor: pointer;
  color: var(--text-secondary);
  min-width: 0;
}

.hero-search-field input::placeholder { color: var(--text-muted); }

.hero-search-divider {
  display: none;
  width: 1px;
  height: 28px;
  background: var(--gray-200);
}

@media (min-width: 640px) {
  .hero-search-divider { display: block; }
  .hero-search-field { padding: 0 1rem; }
}

.hero-search-box .btn {
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .hero-search-box .btn {
    width: 100%;
  }
}

/* Hero Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  transition: var(--transition-base);
  text-decoration: none;
}
.hero-tag:hover {
  border-color: var(--rose-200);
  color: var(--rose-500);
  background: var(--rose-50);
  text-decoration: none;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
}

.hero-trust-item .icon {
  color: var(--rose-500);
  font-size: 0.75rem;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* =============================================
   PROFILE CARDS
   ============================================= */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
}

.profile-card .img-wrap {
  position: relative;
  height: 240px;
  background: var(--gray-100);
  overflow: hidden;
}

.profile-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.profile-card:hover .img-wrap img {
  transform: scale(1.05);
}

.profile-card .img-wrap .badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 2;
}

.profile-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.badge-premium {
  background: var(--gradient-amber);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.badge-featured {
  background: var(--gradient-primary);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.badge-online {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.profile-card .img-wrap .fav-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.8125rem;
  transition: var(--transition-base);
}

.profile-card .img-wrap .fav-btn:hover {
  background: var(--white);
  color: var(--rose-500);
}

.profile-card .info {
  padding: 1rem 1.125rem 1.125rem;
}

.profile-card .info .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.profile-card .info .top h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.profile-card .info .top .age {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.profile-card .info .meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.profile-card .info .meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-card .info .desc {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-card .info .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.profile-card .info .actions .btn {
  padding: 0.5rem;
  font-size: 0.75rem;
  border-radius: var(--radius-md);
}

/* Profile card clickable overlay for URL-friendly cards */
.profile-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.profile-card .info .actions {
  position: relative;
  z-index: 3;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-page {
  padding-top: calc(var(--header-height) + 1.5rem);
}

.profile-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}

.profile-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .profile-gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 240px;
  }
  .profile-gallery .main-img {
    grid-row: 1 / -1;
  }
}

.profile-gallery .img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}

.profile-gallery .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-gallery .main-img {
  height: 300px;
}

@media (min-width: 640px) {
  .profile-gallery .main-img {
    height: 100%;
  }
}

.profile-gallery .thumb-img {
  height: 120px;
}

@media (min-width: 640px) {
  .profile-gallery .thumb-img {
    height: 100%;
  }
}

.profile-info-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .profile-info-section {
    grid-template-columns: 1fr 360px;
  }
}

.profile-details h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .profile-details h1 { font-size: 1.75rem; }
}

.profile-details .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.profile-details .meta-row span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.profile-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.profile-sidebar .contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.profile-sidebar .contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.profile-sidebar .contact-card .price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rose-500);
  margin-bottom: 0.25rem;
}

.profile-sidebar .contact-card .price-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-sidebar .contact-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* =============================================
   LOCATION & CATEGORY GRIDS
   ============================================= */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.625rem;
}

@media (min-width: 640px) {
  .location-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: var(--transition-base);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
}
.location-chip:hover {
  border-color: var(--rose-200);
  color: var(--rose-500);
  background: var(--rose-50);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  text-decoration: none;
}

.location-chip .icon { font-size: 0.8125rem; }

.city-grid, .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.city-card, .category-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.city-card:hover, .category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
}

.city-card .img-wrap, .category-card .img-wrap {
  height: 150px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.city-card .info, .category-card .info {
  padding: 1.125rem;
}

.city-card .info h3, .category-card .info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.city-card .info h3 a, .category-card .info h3 a {
  color: var(--text-primary);
}
.city-card .info h3 a:hover, .category-card .info h3 a:hover {
  color: var(--rose-500);
  text-decoration: none;
}

.city-card .info p, .category-card .info p {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
}

.city-card .info .count, .category-card .info .count {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.15rem 0.625rem;
  background: var(--rose-50);
  color: var(--rose-600);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
}

/* =============================================
   STEPS / PROCESS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.testimonial:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
}

.testimonial .stars {
  color: #f59e0b;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.testimonial blockquote {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial .author .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial .author .name {
  font-size: 0.8125rem;
  font-weight: 600;
}

.testimonial .author .title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--rose-200);
  box-shadow: 0 0 0 1px var(--rose-100), var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.pricing-card.featured h3 { padding-top: 1.5rem; }

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--rose-500);
  margin-bottom: 0.125rem;
  line-height: 1;
}

.pricing-card .duration {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 1.25rem;
}

.pricing-card ul li {
  padding: 0.375rem 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-50);
}

.pricing-card ul li:last-child { border-bottom: none; }

.pricing-card ul li::before {
  content: '✓';
  color: var(--rose-500);
  font-weight: 700;
}

.pricing-card .btn { width: 100%; }

/* =============================================
   FAQ
   ============================================= */
.faq-grid {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 0.625rem;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover { border-color: var(--gray-200); }
.faq-item.active { border-color: var(--rose-200); }

.faq-question {
  padding: 1.125rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: var(--transition-base);
  user-select: none;
  gap: 1rem;
}

.faq-question:hover { background: var(--gray-50); }

.faq-question .icon-wrapper {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-50);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  flex-shrink: 0;
  color: var(--rose-500);
  font-size: 0.75rem;
}

.faq-item.active .faq-question .icon-wrapper {
  transform: rotate(45deg);
  background: var(--rose-500);
  color: var(--white);
}

.faq-answer {
  padding: 0 1.25rem 1.125rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.8;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
}

.blog-card .img-wrap {
  height: 180px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card .content {
  padding: 1.25rem;
}

.blog-card .content .tag {
  display: inline-block;
  padding: 0.15rem 0.625rem;
  background: var(--rose-50);
  color: var(--rose-600);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-card .content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.blog-card .content h3 a {
  color: var(--text-primary);
}

.blog-card .content h3 a:hover {
  color: var(--rose-500);
  text-decoration: none;
}

.blog-card .content p {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.blog-card .content .meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-section { padding: 2.5rem; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-200);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.06);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-details h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--rose-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--rose-500);
}

.contact-item .text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-item .text .label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.125rem;
}

.contact-item .text a {
  color: var(--text-primary);
  font-weight: 500;
}

.contact-item .text a:hover { color: var(--rose-500); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-50), var(--indigo-50));
  border: 1px solid var(--rose-100);
  border-radius: var(--radius-2xl);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-banner { padding: 4rem 2rem; }
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--text-tertiary);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

.footer h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer p, .footer a {
  color: var(--gray-400);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.footer a:hover {
  color: var(--rose-300);
  text-decoration: none;
}

.footer ul li { margin-bottom: 0.5rem; }

.footer ul li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer .brand-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer .logo:hover { color: var(--white); }

.footer .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--white);
}

.footer .logo span { color: var(--rose-400); }

.footer .social-links {
  display: flex;
  gap: 0.5rem;
}

.footer .social-links a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition-base);
  text-decoration: none;
}

.footer .social-links a:hover {
  background: rgba(244, 63, 94, 0.15);
  color: var(--rose-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-bottom-links a:hover { color: var(--rose-300); }

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  padding: calc(var(--header-height) + 1.5rem) 0 2rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--gray-100);
}

.page-header h1 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header p {
  color: var(--text-tertiary);
  font-size: 1rem;
  max-width: 520px;
  margin-top: 0.5rem;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-muted);
  font-weight: 500;
}
.breadcrumbs a:hover { color: var(--rose-500); }

.breadcrumbs .sep {
  color: var(--gray-300);
  font-size: 0.625rem;
}

.breadcrumbs .current {
  color: var(--rose-500);
  font-weight: 600;
}

/* =============================================
   TABLES & COMPARISON
   ============================================= */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.table-wrap table { width: 100%; border-collapse: collapse; }

.table-wrap th,
.table-wrap td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.8125rem;
}

.table-wrap th {
  background: var(--gray-50);
  color: var(--rose-600);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-wrap td { color: var(--text-secondary); }
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: var(--gray-50); }

.comparison-table { width: 100%; border-collapse: collapse; }

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border: 1px solid var(--gray-100);
  font-size: 0.8125rem;
}

.comparison-table th {
  background: var(--rose-50);
  color: var(--rose-600);
  font-weight: 600;
}

.comparison-table td { color: var(--text-secondary); }
.comparison-table .yes { color: var(--emerald-500); font-weight: 700; }
.comparison-table .no { color: var(--gray-300); }
.comparison-table tr.highlight td { background: var(--rose-50); }

/* =============================================
   CONTENT PAGES
   ============================================= */
.content-page { padding: 2rem 0 4rem; }
.content-page .content { max-width: 760px; margin: 0 auto; }

.content-page .content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.content-page .content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.content-page .content p {
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
  line-height: 1.8;
  font-size: 0.9375rem;
}

.content-page .content ul,
.content-page .content ol {
  color: var(--text-tertiary);
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.content-page .content li {
  margin-bottom: 0.375rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* =============================================
   SITEMAP
   ============================================= */
.sitemap-tree { padding: 1rem 0; }

.sitemap-tree .level-0 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--rose-500);
  margin: 1.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sitemap-tree .level-1 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem 1.25rem;
  color: var(--text-primary);
}

.sitemap-tree .level-2 {
  margin: 0.15rem 0 0.15rem 2.5rem;
  font-size: 0.8125rem;
}

.sitemap-tree .level-2 a {
  color: var(--text-tertiary);
}
.sitemap-tree .level-2 a:hover { color: var(--rose-500); }

/* =============================================
   MOBILE STICKY BAR
   ============================================= */
.mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.625rem 1rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.mobile-sticky .btn {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.75rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .mobile-sticky { display: none; }
}

/* Profile page sticky bar - always visible on mobile */
.profile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.625rem 1rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.profile-sticky .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.profile-sticky .btn i {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .profile-sticky { display: none; }
}

/* Profile page gallery */
.profile-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .profile-gallery {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .profile-gallery .main-img {
    grid-row: 1 / -1;
  }
}

.profile-gallery .img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}

.profile-gallery .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-gallery .main-img {
  height: 280px;
}

@media (min-width: 640px) {
  .profile-gallery .main-img {
    height: 100%;
    min-height: 400px;
  }
}

.profile-gallery .thumb-img {
  height: 100px;
}

@media (min-width: 640px) {
  .profile-gallery .thumb-img {
    height: 100%;
  }
}

/* Profile page layout */
.profile-page-wrap {
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .profile-page-wrap {
    padding-bottom: 3rem;
  }
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr 340px;
  }
}

.profile-main h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .profile-main h1 { font-size: 1.75rem; }
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.profile-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.profile-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.profile-sidebar-card .price {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--rose-500);
  margin-bottom: 0.25rem;
}

.profile-sidebar-card .price-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.profile-sidebar-card .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.profile-sidebar-card .trust-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.profile-sidebar-card .trust-row span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Profile info sections */
.profile-section {
  margin-bottom: 2rem;
}

.profile-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.profile-section p {
  color: var(--text-tertiary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.profile-section .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.profile-section .service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.375rem 0;
}

.profile-section .service-list li i {
  color: var(--rose-500);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .profile-section .service-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Related profiles on profile page */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  text-decoration: none;
  display: block;
}

.related-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
  transform: translateY(-2px);
  text-decoration: none;
}

.related-card .img {
  height: 160px;
  background: var(--gray-100);
  position: relative;
}

.related-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .info {
  padding: 0.75rem;
}

.related-card .info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: var(--text-primary);
}

.related-card .info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 899;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-base);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in { animation: fadeIn 0.4s ease; }
.fade-in-up { animation: fadeInUp 0.4s ease; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   TRUST SIGNALS
   ============================================= */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.trust-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* =============================================
   RELATED / NEARBY PROFILES
   ============================================= */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  text-decoration: none;
}

.related-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

.related-card .img {
  height: 160px;
  background: var(--gray-100);
  position: relative;
}

.related-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card .info {
  padding: 0.75rem;
}

.related-card .info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.related-card .info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   SAFETY / DISCLAIMER
   ============================================= */
.safety-notice {
  background: var(--amber-50);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.safety-notice .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }

.grid { display: grid; }
.hidden { display: none; }

.w-full { width: 100%; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* =============================================
   COUNTER ANIMATION
   ============================================= */
.counter-num {
  display: inline-block;
}

/* =============================================
   RESPONSIVE TABLES (Mobile)
   ============================================= */
@media (max-width: 639px) {
  .table-wrap table { font-size: 0.75rem; }
  .table-wrap th,
  .table-wrap td { padding: 0.5rem 0.625rem; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .navbar, .footer, .whatsapp-float, .mobile-sticky { display: none; }
  body { background: white; color: black; }
}
