/*
Theme Name: Mumbai Escorts - Hybrid Design
Version: 9.0
References: AnshikaRao.com + SimpleEscorts.in
*/

:root {
  /* AnshikaRao-inspired pink palette */
  --primary: #e91e63;
  --primary-light: #f48fb1;
  --primary-dark: #c2185b;
  
  /* SimpleEscorts-inspired neutrals */
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-elevated: #f5f5f5;
  
  /* Text */
  --text: #212121;
  --text-secondary: #757575;
  --text-muted: #9e9e9e;
  
  /* Effects */
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 16px;
  
  /* Safe areas */
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

/* ========== RESET ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: calc(70px + var(--safe-bottom));
}

/* ========== HEADER - SimpleEscorts Style ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-bottom: 1px solid #e0e0e0;
  padding-top: var(--safe-top);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo - AnshikaRao style */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
}

.brand-text span {
  color: var(--primary);
}

/* Post Ad Button - SimpleEscorts style */
.btn-post-ad {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* ========== SEARCH BAR - SimpleEscorts Style ========== */
.search-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 24px 16px;
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-title {
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}

.search-input {
  flex: 1;
  position: relative;
}

.search-input input,
.search-input select {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 40px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 15px;
  background: white;
}

.search-input input:focus,
.search-input select:focus {
  outline: none;
  border-color: var(--primary);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.btn-search {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ========== FILTER PILLS - SimpleEscorts Style ========== */
.filter-section {
  background: var(--bg-card);
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
  position: sticky;
  top: 60px;
  z-index: 999;
}

.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ========== MAIN CONTENT ========== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
}

.section-link {
  color: var(--primary);
  font-size: 14px;
  text-decoration: none;
}

/* ========== PROFILE GRID - Hybrid Style ========== */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* ========== PROFILE CARD - Hybrid Style ========== */
.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-verified {
  background: #4caf50;
  color: white;
}

.badge-live {
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Price Tag */
.card-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

/* Card Content */
.card-content {
  padding: 12px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-title a {
  color: var(--text);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--primary);
}

.card-location {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn {
  padding: 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-view {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid #e0e0e0;
}

/* ========== FEATURES SECTION - AnshikaRao Style ========== */
.features-section {
  padding: 60px 16px;
  background: white;
  margin: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========== CTA SECTION - AnshikaRao Style ========== */
.cta-section {
  padding: 60px 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin: 0 auto;
}

.btn-large {
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* ========== FOOTER - SimpleEscorts Style ========== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid #e0e0e0;
  padding: 40px 16px 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 32px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  color: var(--text-muted);
  font-size: 13px;
}

/* ========== FLOATING BUTTONS ========== */
.fab-container {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  right: 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.fab:active {
  transform: scale(0.9);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-call {
  background: var(--primary);
}

/* ========== BOTTOM NAV ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(70px + var(--safe-bottom));
  background: var(--bg-card);
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  padding-bottom: var(--safe-bottom);
  z-index: 1000;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px;
}

.nav-item.active {
  color: var(--primary);
}

.nav-icon {
  font-size: 24px;
}

/* ========== MODAL ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

.modal-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s;
  z-index: 2001;
}

.modal-backdrop.visible .modal-sheet {
  transform: translateY(0);
}

.modal-header {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--bg-card);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--bg-elevated);
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  padding: 16px;
}

/* ========== UTILITIES ========== */
@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
  
  .fab-container {
    bottom: 24px;
  }
}