
/* === CLEAN, ELEGANT & MODERN – WHITE + DARK PINK + DEEP RED (PREMIUM & SOFT) === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }


    body {
      font-family: 'Poppins', sans-serif;
      background: #f8f9fa;
      color: #2d2d2d;
      line-height: 1.7;
      overflow-x: hidden;
      font-size: 16px;
      min-height: 100vh;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 18px;
    }

 h1, h2, h3, h4 { margin-top: 18px; text-transform: capitalize; }
        h1 { font-size: 2.1em; padding-bottom: 5px; }
        h2 { font-size: 1.95em; color: #0055aa; }
        h3 { font-size: 1.65em; }
        h4 { font-size: 1.4em; color: #003366; }
        p { margin: 20px 0;}
        ul, ol { margin: 22px 0; padding-left: 38px; }
        li { margin: 12px 0; font-size: 1.04em; }
        a { color: #0066cc; text-decoration: none; font-weight: 600; }
        a:hover { text-decoration: underline; }
        .keyword { font-weight: bold; text-transform: capitalize; }
        .longtail { font-weight: bold; color: #d35400; text-transform: capitalize; }
        .note { font-size: 0.95em; color: #333; margin: 60px 0 25px; padding: 25px; background: #e8f4ff; border-left: 6px solid #0066cc; border-radius: 12px; line-height: 1.8; }
        table { width: 100%; border-collapse: collapse; margin: 30px 0; font-size: 1.03em; }
        th, td { padding: 15px; text-align: left; border: 1px solid #ccc; }
        th { background: #0066cc; color: white; }
        blockquote { border-left: 6px solid #0066cc; padding: 22px; background: #f0f7ff; font-style: italic; margin: 30px 0; border-radius: 12px; }

    /* === ANIMATIONS === */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(25px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .animate-up { animation: fadeInUp 0.8s ease forwards; }
    .animate-fade { animation: fadeIn 1s ease forwards; }

    /* === NAVBAR === */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;               /* Reduced from 1rem */
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(219, 39, 119, 0.15);
  transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 0;               /* Even smaller on scroll */
  background: rgba(255, 255, 255, 0.98);
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;               /* Reduced from 1.9rem */
  color: #c2185b;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.6rem;                     /* Reduced from 2rem */
  margin: 0;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;              /* Slightly smaller */
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #db2777;
  transition: width 0.3s ease;
}

.nav-links a:hover::after { 
  width: 100%; 
}
.nav-links a:hover { 
  color: #db2777; 
}

/* Book Now Button */
.book-now {
  background: linear-gradient(45deg, #db2777, #ec4899);
  color: #fff;
  padding: 0.55rem 1.4rem;         /* Smaller padding */
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;               /* Smaller font */
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(219, 39, 119, 0.25);
}

.book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(219, 39, 119, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #db2777;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: flex;
  }

  .book-now {
    display: none; /* Hide on mobile, show in menu if needed */
  }
  
}
    /* === HERO SECTION === */
    .hero {
      background: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('../images/quresi-bnr.png') center/cover;
      height: 88vh;
      min-height: 540px;
      display: flex;
      align-items: center;
      text-align: center;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at center, rgba(219, 39, 119, 0.06), transparent 70%);
      z-index: 1;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.2rem);
      margin-bottom: 1rem;
      color: #c2185b;
      font-weight: 700;
      line-height: 1.2;
      animation: fadeInUp 1s ease;
    }

    .hero p {
      font-size: 1.15rem;
      margin-bottom: 2rem;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      color: #444;
      animation: fadeInUp 1.2s ease;
    }

    .hero .book-now { animation: fadeInUp 1.4s ease; }

    /* === SECTION STYLES === */
    .section {
      padding: 2.8rem 0;
      margin-bottom: 0;
    }

    .section+.section { margin-top: -4.5rem; }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.1rem;
      text-align: center;
      margin-bottom: 1.8rem;
      color: #c2185b;
      position: relative;
      font-weight: 700;
      line-height: 1.3;
      animation: fadeIn 1.2s ease;
    }

    .section-title::after {
      content: '';
      width: 70px;
      height: 4px;
      background: #db2777;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* === GALLERY GRID === */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-top: 1.2rem;
    }

    .gallery-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid rgba(219, 39, 119, 0.2);
      display: flex;
      flex-direction: column;
      height: 100%;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease forwards;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .gallery-card:nth-child(1) { animation-delay: 0.1s; }
    .gallery-card:nth-child(2) { animation-delay: 0.2s; }
    .gallery-card:nth-child(3) { animation-delay: 0.3s; }

    .gallery-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 16px 35px rgba(219, 39, 119, 0.15);
      border-color: #db2777;
    }

    /* === VIDEO STYLES === */
    .gallery-video {
      position: relative;
      width: 100%;
      height: 320px;
      overflow: hidden;
      border-radius: 16px 16px 0 0;
      background: #f1f1f1;
    }

    .gallery-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-card:hover .gallery-video video { transform: scale(1.08); }

    .play-icon {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 68px; height: 68px;
      background: rgba(219, 39, 119, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      color: #fff;
      opacity: 0;
      transition: all 0.4s ease;
      pointer-events: none;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    .gallery-card:hover .play-icon {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* === IMAGE STYLES === */
    .gallery-card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 16px 16px 0 0;
    }

    /* === UPDATED: GALLERY INFO (FLEX + BUTTON SPACE) === */
    .gallery-info {
      padding: 1.3rem 1rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* ← NEW: Makes space for buttons */
      background: #fdfdfd;
      text-align: center;
    }

    .gallery-info h3 {
      font-size: 1.28rem;
      color: #c2185b;
      margin-bottom: 0.3rem;
      font-weight: 700;
    }

    .gallery-info p {
      font-size: 1.02rem;
      color: #555;
      margin: 0 0 0.8rem; /* ← NEW: Space for buttons */
      font-weight: 500;
    }

    /* === NEW: CONTACT BUTTONS (MOBILE-SAFE) === */
    .contact-buttons {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.9rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      flex: 1;
      min-width: 120px;
      justify-content: center;
      white-space: nowrap;
    }

    .phone-btn {
  background: linear-gradient(135deg, #c2185b, #db2777); /* ← DARK PINK */
  color: white;
  box-shadow: 0 2px 8px rgba(194, 24, 91, 0.3);
}
.phone-btn:hover {
  background: #db2777;
  transform: translateY(-2px);
}

    .whatsapp-btn {
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: white;
      box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-btn:hover {
      background: #128c7e;
      transform: translateY(-2px);
    }

    .contact-btn i { font-size: 1rem; }

    /* === MOBILE FIX (NO OVERLAP) === */
   /* === MOBILE: FULL WIDTH + NO SHRINK === */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem; /* ← Extra breathing space */
  }

  .gallery-card {
    max-width: 100% !important;     /* ← FULL WIDTH */
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
  }

  .gallery-video,
  .gallery-card img {
    width: 100% !important;
    height: 420px !important;       /* ← Better ratio */
    object-fit: cover;
    border-radius: 18px 18px 0 0;
  }

  .gallery-info {
    padding: 1.2rem 1rem;
  }

  .contact-buttons {
    flex-direction: row;
    gap: 0.6rem;
  }

  .contact-btn {
    min-width: auto;
    flex: 1;
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
  }
}

    @media (min-width: 769px) and (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* === SERVICES GRID – COMPACT === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.service-card {
  background: #ffffff;
  padding: 1rem 0.8rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(219, 39, 119, 0.18);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.7s ease forwards;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #db2777;
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.1);
}

.service-icon {
  font-size: 1.8rem;
  color: #db2777;
  margin-bottom: 0.5rem;
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.18);
}

.service-card p {
  font-size: 0.92rem;
  color: #333;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* === POPULAR TAGS – ULTRA COMPACT === */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.5rem 0;
}

.tag {
  background: #fdf2f8;
  color: #9f1239;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid rgba(219, 39, 119, 0.22);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(0.02s * var(--i, 0));
}

.tag:hover {
  background: #db2777;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
  border-color: #db2777;
}

/* === OTHER SECTIONS === */
.reviews-grid,
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 1.2rem;
}

.review-card,
.location-card {
  background: #ffffff;
  padding: 1.7rem;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(219, 39, 119, 0.18);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.7s ease forwards;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  border-color: #db2777;
  box-shadow: 0 12px 28px rgba(219, 39, 119, 0.12);
}

.review-card p,
.location-card h3 {
  font-size: 1.06rem;
  color: #333;
  font-weight: 600;
}

/* === TABLE === */
.table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.3rem;
  margin: 1.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(219, 39, 119, 0.15);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.99rem;
}

.custom-table th,
.custom-table td {
  padding: 0.95rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(219, 39, 119, 0.12);
}

.custom-table th {
  background: rgba(219, 39, 119, 0.1);
  color: #c2185b;
  font-weight: 600;
  font-size: 0.89rem;
  text-transform: uppercase;
}

.custom-table tbody tr:hover {
  background: rgba(219, 39, 119, 0.05);
}
/* === MOBILE: FULL TABLE WITHOUT SCROLL & OVERLAP === */
@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: hidden !important;
    padding: 1rem 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .custom-table {
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: 0.88rem;
    margin: 0;
  }

  .custom-table th,
  .custom-table td {
    padding: 0.9rem 0.6rem;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
    border: none !important;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .custom-table th {
    background: linear-gradient(135deg, #c2185b, #db2777) !important;
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px 12px 0 0 !important;
  }

  .custom-table tbody tr {
    display: block;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  }

  .custom-table tbody td {
    display: block;
    text-align: center;
    padding: 0.75rem 0.6rem;
    font-size: 0.9rem;
    border-bottom: 1px dashed rgba(219, 39, 119, 0.15);
  }

  .custom-table tbody td:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
  }

  /* Hide header on mobile, show labels in cells */
  .custom-table thead {
    display: none;
  }

  .custom-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #c2185b;
    font-size: 0.78rem;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  /* Optional: Add zebra striping */
  .custom-table tbody tr:nth-child(even) {
    background: #fdf8fb;
  }
}
/* === FAQ === */
.faq-item {
  background: #ffffff;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(219, 39, 119, 0.16);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(219, 39, 119, 0.06);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #db2777;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 1.1rem;
}

.faq-answer.active {
  max-height: 300px;
  padding: 1.1rem;
}

.faq-answer p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
}

.footer {
  background: #ffffff;
  padding: 3.2rem 0 1.8rem;
  margin-top: 0;
  border-top: 2px solid rgba(219, 39, 119, 0.25);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #c2185b, #db2777, #ec4899, #c2185b);
  background-size: 200% 100%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin-bottom: 2rem;
  padding: 0 10px;
}

.footer h3 {
  color: #c2185b;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #db2777, #ec4899);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(219, 39, 119, 0.3);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
}

.footer ul li::before {
  content: '→';
  position: absolute;
  font-size: 0.9rem;
  left: 0;
  color: #db2777;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer ul li:hover {
  transform: translateX(6px);
  color: #c2185b;
}

.footer ul li:hover::before {
  opacity: 1;
  left: 4px;
}

.footer a {
  color: #444;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
}

.footer a:hover {
  color: #db2777;
  text-shadow: 0 1px 2px rgba(219, 39, 119, 0.15);
}

/* Contact Section */
.footer .contact-info p {
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer .contact-info p i {
  color: #db2777;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer .contact-info p:hover {
  color: #c2185b;
  transform: translateX(4px);
}

.footer .contact-info p:hover i {
  color: #c2185b;
  animation: pulse 1s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(219, 39, 119, 0.25);
  color: #666;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #db2777, transparent);
  border-radius: 2px;
}

.footer-bottom a {
  color: #db2777;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Social Icons in Footer (Optional Add) */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  justify-content: center;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fdf2f8;
  color: #c2185b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(219, 39, 119, 0.15);
}

.social-links a:hover {
  background: #db2777;
  color: #fff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.3);
}

/* Responsive */
/* === FOOTER – MOBILE: 2 COLUMNS, LEFT ALIGN (NATURAL) === */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem 1.5rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;   /* ← 2 COLUMNS */
    gap: 2rem !important;
    max-width: 100%;
    margin: 0 auto;
  }

  /* LEFT ALIGN TEXT - NO CENTER */
  .footer h3 {
    font-size: 1.25rem !important;
    margin-bottom: 1rem;
    text-align: LEFT !important;  /* ← LEFT ALIGN */
  }

  .footer h3::after {
    left: 0 !important;  /* ← LEFT SIDE */
    transform: none !important;
  }

  .footer ul {
    padding: 0;
    text-align: LEFT !important;  /* ← LEFT ALIGN */
  }

  .footer ul li {
    padding-left: 20px !important;
    text-align: LEFT !important;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    position: relative;
  }

  .footer ul li::before {
    display: block !important;  /* ← ARROW SHOW */
    left: 0;
    opacity: 1;
  }

  .footer a {
    font-size: 0.9rem !important;
    text-align: LEFT !important;
  }

  .footer .contact-info p {
    font-size: 0.9rem !important;
    justify-content: flex-start !important;
    text-align: LEFT !important;
  }

  /* Social Icons CENTER */
  .social-links {
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
  }

  /* Footer Bottom CENTER */
  .footer-bottom {
    text-align: center !important;
    padding-top: 1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr !important;  /* Very small pe 1 column */
  }
}
  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* === FLOATING BUTTONS === */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  z-index: 1001;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
}

.whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.call {
  background: linear-gradient(45deg, #db2777, #ec4899);
}

.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* === NOWCALLING BAR – COMPACT, MODERN & PREMIUM === */
.nowcalling {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid #db2777;               /* ← Thinner border */
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06); /* ← Lighter shadow */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  padding: 0.5rem 0.8rem;                      /* ← Chhota padding */
  gap: 0.8rem;                                 /* ← Kam gap */
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.nowcalling .lcol,
.nowcalling .rcol {
  flex: 1;
  text-align: center;
}

.nowcalling a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;                                    /* ← Kam gap */
  padding: 0.55rem 1rem;                       /* ← Chhota button */
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;                          /* ← Chhota text */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  min-width: 110px;                            /* ← Chhota width */
  position: relative;
  overflow: hidden;
}

/* Call Button – Deep Pink */
.nowcalling .lcol a {
  background: linear-gradient(135deg, #c2185b, #db2777);
  color: #fff;
}

.nowcalling .lcol a i {
  font-size: 1.1rem;                           /* ← Chhota icon */
  animation: ring 1.6s infinite;
}

@keyframes ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.nowcalling .lcol a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.nowcalling .lcol a:hover::before {
  width: 200px;
  height: 200px;
}

.nowcalling .lcol a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(219, 39, 119, 0.25);
}

/* WhatsApp Button – Green */
.nowcalling .rcol a {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.nowcalling .rcol a i {
  font-size: 1.1rem;
}

.nowcalling .rcol a:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

/* Pulse Animation (Optional – Sirf Call pe) */
.nowcalling .lcol a {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0.3); }
  70% { box-shadow: 0 0 0 10px rgba(219, 39, 119, 0); }
  100% { box-shadow: 0 0 0 0 rgba(219, 39, 119, 0); }
}

/* === MOBILE: 1 ROW, COMPACT === */
@media (max-width: 768px) {
  .nowcalling {
    padding: 0.45rem 0.7rem;
    gap: 0.6rem;
  }

  .nowcalling a {
    min-width: 100px;
    max-width: 130px;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    gap: 5px;
  }

  .nowcalling a i {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .nowcalling {
    padding: 0.4rem 0.6rem;
    gap: 0.5rem;
  }

  .nowcalling a {
    min-width: 90px;
    max-width: 110px;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .nowcalling a span {
    display: none; /* Text hide on very small */
  }

  .nowcalling a i {
    font-size: 1.15rem;
  }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .tags-grid {
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.74rem;
    padding: 0.35rem 0.68rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 2.2rem 1.6rem;
    transition: left 0.45s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  .hero {
    height: 78vh;
  }

  .service-card {
    padding: 0.9rem 0.7rem;
    min-height: 80px;
  }

  .service-icon {
    font-size: 1.6rem;
  }

  .service-card p {
    font-size: 0.88rem;
  }

  .tags-grid {
    gap: 0.35rem;
  }

  .tag {
    font-size: 0.72rem;
    padding: 0.32rem 0.62rem;
  }

  .section {
    padding: 2.2rem 0;
  }
}

@media (max-width: 576px) {

  .gallery-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video {
    height: 270px;
  }

  .floating {
    bottom: 18px;
    right: 18px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .services-grid {
    gap: 0.9rem;
  }

  .service-card {
    padding: 0.8rem;
    min-height: 75px;
  }

  .service-icon {
    font-size: 1.5rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .tags-grid {
    gap: 0.3rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.58rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
  }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#db2777, #ec4899);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#ec4899, #db2777);
}
/* ==== SCROLLBAR 100% HIDE – BUT SCROLLING WORKS ==== */
* {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

*::-webkit-scrollbar {
  display: none !important;  /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}

/* Body aur HTML */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;     /* ← Scrolling ON */
  overflow-x: hidden;
}

/* Optional: Smooth scroll */
html {
  scroll-behavior: smooth;
}
body.age-locked {
      overflow: hidden;
    }

    #mainContent {
      position: relative;
      transition: filter 0.4s ease;
    }

    /* BLUR CLASS - SIRF BLUR, KUCH GAYAB NAHI */
    #mainContent.blur-bg {
      /* Yeh 3 lines blur ko 100% force karengi */
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
      will-change: filter;

      /* Sirf blur — brightness normal */
      filter: blur(12px);
      
      pointer-events: none;
      user-select: none;
    }

    /* ===================== POPUP (CLEAR) ===================== */
    #agePopup {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75); /* Thoda dark background popup ke liye */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    #agePopup.active {
      display: flex;
    }

    #agePopup .modal {
      background: #ffffff;
      padding: 2.8rem 2.2rem;
      border-radius: 18px;
      max-width: 460px;
      width: 90%;
      text-align: center;
      box-shadow: 0 24px 48px rgba(0,0,0,.3);
      transform: scale(0.94);
      animation: scaleIn 0.3s ease forwards;
    }

    @keyframes scaleIn {
      to { transform: scale(1); }
    }

    #agePopup h1 {
      font-size: 1.9rem;
      margin: 0 0 .8rem;
      color: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
    }
    #agePopup h1 span { font-size: 2.2rem; }

    #agePopup p {
      color: #444;
      line-height: 1.65;
      margin: 0 0 1.6rem;
      font-size: 1rem;
    }

    .buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.4rem;
    }
    .btn {
      min-width: 160px;
      padding: .9rem 1.8rem;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all .22s ease;
    }
    .btn-yes { background: #0066cc; color: #fff; }
    .btn-yes:hover { background: #0055aa; }
    .btn-no { background: #f8f9fa; color: #333; border: 1.4px solid #e2e2e2; }
    .btn-no:hover { background: #eceff1; }

    .legal { font-size: .82rem; color: #666; line-height: 1.45; }

    @media (max-width: 480px) {
      .buttons { flex-direction: column; }
      .btn { width: 100%; }
    }
    
    
    /* yeh use karna hai location ke liye */

/* 🔹 Main grid */
.locations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* 🔹 Location cards */
.location-card {
  background: linear-gradient(135deg, #ffffff, #f3f6ff);
  border-radius: 8px;
  padding: 6px 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  width: auto;                 /* auto adjust based on text */
  white-space: nowrap;         /* single line */
  overflow: visible;
  text-overflow: clip;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  border: 1px solid #e0e0e0;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* 🔹 Hover effects */
.location-card:hover {
  background: linear-gradient(135deg, #0078ff, #00b4ff);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 🔹 Optional responsive tweak */
@media (max-width: 600px) {
  .location-card {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.search-box {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
}
#locationSearch {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease;
}
#locationSearch:focus {
  border-color: #0078ff;
}
#suggestions {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
#suggestions div {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
#suggestions div:hover {
  background: #f2f2f2;
}

#loadMoreBtn {
  background: linear-gradient(135deg, #0078ff, #00b4ff);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin: 20px auto;
  transition: all 0.3s ease;
}
#loadMoreBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0062cc, #00a2ff);
}
