/* ========================================
   DELHIINMASTI – MAIN.CSS
   Production-Ready | < 8KB | Mobile-First
   ======================================== */

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Poppins', sans-serif; 
  line-height: 1.7; 
  color: #333; 
  background: #f8f9fa; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input { font-family: inherit; }

/* ============== CONTAINER ============== */
.container { 
  width: 90%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 1rem; 
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4 { color: #1a1a1a; margin-bottom: 1rem; }
h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 600; text-align: center; }
h3 { font-size: 1.4rem; font-weight: 600; color: #e91e63; }
p { font-size: 1rem; color: #555; margin-bottom: 1rem; }

/* ============== BUTTONS ============== */
.cta-btn, .whatsapp-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-btn {
  background: #e91e63;
  color: #fff;
  font-size: 1.1rem;
}
.cta-btn:hover { background: #c2185b; transform: translateY(-2px); }
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}
.whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); }

/* ============== HEADER ============== */
header {
  background: #1a1a1a;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
}
.logo span { color: #e91e63; }
.nav a {
  color: #fff;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover { color: #e91e63; }

/* ============== HERO ============== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/locations/hero-low.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 1.5rem; }
.hero .cta-btn { margin: 0.5rem; }

/* ============== SECTION ============== */
.section { padding: 4rem 0; }
.section h2 { margin-bottom: 1.5rem; }
.section > p { text-align: center; max-width: 800px; margin: 0 auto 3rem; }

/* ============== GRID ============== */
.grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }

/* ============== CARD ============== */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-8px); }
.card img { width: 100%; height: 300px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.badge {
  background: #e91e63;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}
.price { font-weight: 600; color: #1a1a1a; font-size: 1.1rem; }
.profile-bio { font-size: 0.95rem; color: #555; line-height: 1.6; margin: 1rem 0; }

/* ============== FAQ ============== */
.faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer;
}
.faq-question {
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
  padding-right: 2rem;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #e91e63;
  transition: transform 0.3s;
}
details[open] .faq-question::after { content: '−'; }
details[open] summary ~ * { animation: fadeIn 0.3s ease-in; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============== REVIEWS ============== */
.review-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.review-stars { color: #ffd700; font-size: 1.1rem; }
.review-author { font-weight: 600; margin-top: 0.5rem; }

/* ============== FOOTER ============== */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 { color: #fff; margin-bottom: 1rem; }
.footer-col a { display: block; margin-bottom: 0.5rem; color: #ccc; }
.footer-col a:hover { color: #e91e63; }
.copyright {
  text-align: center;
  padding-top: 1rem;
  border-top: 1 1px solid #333;
}

/* ============== FLOAT CTA ============== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .grid { grid-template-columns: 1fr; }
  .card img { height: 250px; }
  .nav { display: none; } /* Hamburger menu in JS */
}
@media (max-width: 480px) {
  .cta-btn { width: 100%; margin: 0.5rem 0; }
  .whatsapp-btn { width: 100%; }
}

/* ============== LAZY LOAD ============== */
img.lazy { opacity: 0; transition: opacity 0.3s; }
img.lazy.loaded { opacity: 1; }

/* ============== PRINT STYLES ============== */
@media print {
  .whatsapp-float, .nav, .hero .cta-btn { display: none; }
  body { color: #000; background: #fff; }
}