* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 70px;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-bottom: 96px;
  scrollbar-gutter: stable;
}

/* Inter Font - CLS ke liye best */
@font-face {
  font-family: 'Inter';
  src: url('https://dilli.escortdirectory.in/assets/fonts/Inter.woff2') format('woff2'); /* apna correct path daal do */
  font-display: swap;
  size-adjust: 100%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #fff;
  color: #333;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-link {
  color: #900;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
  color: #700;
}

.hero {
  text-align: center;
  padding: 30px 0;
  background: #f8f8f8;
}

h1, h2, h3, h4 {
  color: #900;
}

h1 { font-size: 2rem; margin-bottom: 15px; }
h2 { font-size: 1.8rem; margin: 20px 0 10px; }
h3 { font-size: 1.4rem; margin: 10px 0; }

.hero p {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ==================== SECTIONS ==================== */
.profiles, .reviews, .local-areas, .faq, .locations, .video-section, .content, .pricing {
  padding: 20px 0;
  background: #fff;
}

/* Grids */
.profile-grid, .reviews-grid, .local-areas-grid, .locations-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

/* ==================== PROFILE CARDS - CLS FIX ==================== */
.profile-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.profile-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 270 / 480;     /* Exact ratio from your HTML (270:480) */
  object-fit: cover;
  flex-shrink: 0;
  max-width: 100%;
}

/* Review Cards */
.review-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Video - CLS Fix */
.video-section video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 15px auto;
  aspect-ratio: 16 / 9;
  display: block;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.btn {
  padding: 9.6px 18px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1.08rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.call { background: #0052cc; color: #fff; }
.btn.call:hover, .btn.call:focus { background: #003d99; transform: translateY(-1px); }

.btn.whatsapp { background: #25d366; color: #fff; }
.btn.whatsapp:hover, .btn.whatsapp:focus { background: #1ebe57; transform: translateY(-1px); }

/* Links */
.hashtag-link, .content a, .footer a {
  color: #900;
  text-decoration: underline;
}

.hashtag-link:hover, .content a:hover, .footer a:hover {
  color: #700;
  text-decoration: none;
}

/* Local Areas & Locations - Simple Red Pills (jaise pehle) */
.local-area-item,
.location-item {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 1.17rem;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.local-area-item:hover,
.location-item:hover {
  background: #a00;
}

/* FAQ - No Card (Simple & Clean) */
.faq-grid {
  gap: 12px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 6px;
  padding: 16px 18px;
  border-left: 4px solid #900;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #f0f0f0;
}

.faq-item summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #900;
  cursor: pointer;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;
}

/* Content & Footer */
.content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.footer {
  background: #fff;
  color: #333;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  font-size: 1.2rem;
}

.footer p, .footer a {
  font-size: 1.2rem;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 1000;
}

.sticky-footer .call,
.sticky-footer .whatsapp {
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.sticky-footer .call { background: #c00; color: #fff; }
.sticky-footer .call:hover { background: #a00; transform: translateY(-2px); }

.sticky-footer .whatsapp { background: #25d366; color: #fff; }
.sticky-footer .whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* Reviews */
.reviews li, .review-card {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
}

.star-rating {
  color: #0052cc;
  font-size: 0.9rem;
  margin: 8px 0;
}

/* ====================== MEDIA QUERIES ====================== */

@media (max-width: 400px) {
  .container { padding: 0 10px; }
  h1 { font-size: 1.6rem; }
  h2, h3 { font-size: 1.2rem; }

  .profile-grid, .reviews-grid, .faq-grid,
  .local-areas-grid, .locations-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .hamburger { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.8rem; }
  h2, h3 { font-size: 1.3rem; }

  .profile-grid, .reviews-grid, .faq-grid,
  .local-areas-grid, .locations-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active { display: flex; }
  .hamburger { display: block; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .profile-grid, .reviews-grid, .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .profile-grid, .reviews-grid, .faq-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}