* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #f0f3fa;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo h1 {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFC0D0, #FF6A88);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo span {
  font-size: 0.8rem;
  display: block;
  color: #ffb7c5;
}

.nav-links a {
  color: #dddff5;
  text-decoration: none;
  margin-left: 1.8rem;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ff7b9c;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2.5rem 0 2rem;
}

.hero h2 {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #FFB7C5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #b9c3e6;
  margin-top: 0.5rem;
}

/* Search Box */
.search-section {
  margin: 1.5rem 0 1rem;
}

.search-box {
  display: flex;
  max-width: 650px;
  margin: 0 auto;
  background: #14141e;
  border-radius: 60px;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  border: 1px solid #2a2a3a;
  transition: all 0.2s;
}

.search-box:focus-within {
  border-color: #ff6a88;
  box-shadow: 0 0 12px rgba(255, 106, 136, 0.3);
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 0;
  color: white;
  outline: none;
  font-size: 1rem;
}

.search-box button {
  background: linear-gradient(95deg, #FF4D6D, #FF8CA3);
  border: none;
  padding: 0 2rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.search-box button:hover {
  transform: scale(0.97);
}

/* City Chips */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem 0 1.5rem;
}

.city-chip {
  background: #191923;
  padding: 0.6rem 1.3rem;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  color: #e2e8f0;
  font-family: inherit;
}

.city-chip.active,
.city-chip:hover {
  background: #ff4d6d;
  color: #0a0a0f;
}

/* Profiles Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.escort-card {
  background: rgba(18, 18, 28, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 1.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.escort-card:hover {
  transform: translateY(-6px);
  border-color: #ff6a88;
}

.card-img {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.card-info {
  padding: 1.2rem;
}

.name-age {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.detail-badge {
  background: #1e1e2c;
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  margin: 0.2rem 0.5rem 0.2rem 0;
  font-size: 0.85rem;
}

/* Profile Detail Page */
.profile-container {
  margin: 2rem 0;
  background: #0e0e16;
  border-radius: 2rem;
  border: 1px solid rgba(255, 100, 130, 0.4);
  padding: 2rem;
}

.profile-header {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  flex: 1;
  min-width: 250px;
}

.profile-avatar img {
  width: 100%;
  border-radius: 1.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid #ff6a88;
}

.profile-details {
  flex: 2;
}

.profile-name {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.detail-row {
  margin: 0.8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
}

.detail-label {
  font-weight: 600;
  color: #ffb7c5;
  min-width: 100px;
}

/* Media Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.media-item {
  border-radius: 1rem;
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews Section */
.reviews-section {
  margin-top: 2rem;
  background: #0a0a12;
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.review-card {
  background: #16161f;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  border-left: 4px solid #ff6a88;
}

.reviewer {
  font-weight: bold;
  color: #ffb7c5;
}

.stars {
  color: gold;
  margin: 0.3rem 0;
  letter-spacing: 2px;
}

/* Booking Button */
.booking-btn {
  background: linear-gradient(95deg, #ff4d6d, #ff3b5c);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 1.5rem 0;
  transition: 0.2s;
  font-family: inherit;
}

.booking-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 4rem;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #7f7f9a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .profile-header {
    flex-direction: column;
  }
  
  .profile-avatar {
    min-width: auto;
  }
  
  .nav-links a {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .search-box {
    flex-direction: column;
    border-radius: 2rem;
    padding: 0.5rem;
  }
  
  .search-box button {
    padding: 0.8rem;
    margin-top: 0.5rem;
  }
}