/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0d0d12;
  color: #f0e6f0;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 70px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 45px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.section-header p {
  color: #c9a0c9;
  font-size: 1.05rem;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s;
}
.btn.primary {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  border-color: transparent;
}
.btn.primary:hover {
  background: linear-gradient(135deg, #f50057, #ab47bc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.35);
}
.btn.outline {
  background: transparent;
  border-color: #e91e63;
  color: #ff80ab;
}
.btn.outline:hover {
  background: rgba(233, 30, 99, 0.15);
  color: #fff;
}
.btn.large {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #1a0a1a;
  border-bottom: 1px solid #3d1a3d;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4a5d4;
}
.top-left a {
  color: #ff80ab;
  font-weight: 600;
}
.top-right {
  display: flex;
  gap: 10px;
}
.top-right .btn-sm {
  background: #e91e63;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.top-right .whatsapp {
  background: #25d366;
}

/* ========== HEADER ========== */
.main-header {
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a1a2a;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-text span {
  color: #e91e63;
}
.logo small {
  font-size: 0.7rem;
  color: #c9a0c9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 26px;
}
.nav a {
  color: #e0c0e0;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover {
  color: #ff80ab;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0a1a 0%, #2d0a2d 40%, #0d0d12 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(233, 30, 99, 0.18) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero-tagline {
  font-size: 1.25rem;
  color: #ff80ab;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-desc {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #d4b8d4;
  font-size: 1.05rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.hero-stats div {
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: #e91e63;
  font-weight: 800;
}
.hero-stats span {
  font-size: 0.85rem;
  color: #c9a0c9;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== TRUSTED ========== */
.trusted {
  background: #110a12;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.trusted-card {
  background: linear-gradient(145deg, #1c1220, #150e18);
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: 0.3s;
}
.trusted-card:hover {
  border-color: #e91e63;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.15);
}
.trusted-card i {
  font-size: 2rem;
  color: #e91e63;
  margin-bottom: 14px;
}
.trusted-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}
.trusted-card p {
  font-size: 0.92rem;
  color: #c9a0c9;
}

/* ========== TIERS ========== */
.tiers {
  background: #0d0d12;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.tier-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
  transition: 0.3s;
}
.tier-card:hover,
.tier-card.featured {
  border-color: #e91e63;
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.2);
}
.tier-card.featured {
  background: linear-gradient(160deg, #1f0f22, #2a1230);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-card h3 {
  text-align: center;
  margin: 12px 0 10px;
  font-size: 1.2rem;
  color: #fff;
}
.price {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ff80ab;
  margin-bottom: 16px;
}
.price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #c9a0c9;
}
.tier-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.tier-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #d4b8d4;
  border-bottom: 1px solid #2a1a2a;
}
.tier-card ul li:last-child {
  border-bottom: none;
}

/* ========== CATEGORIES ========== */
.categories {
  background: #110a12;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cat-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: 0.3s;
}
.cat-card:hover {
  border-color: #e91e63;
  transform: translateY(-4px);
  background: #1c1220;
}
.cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(233,30,99,0.2), rgba(156,39,176,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #e91e63;
}
.cat-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 0.85rem;
  color: #c9a0c9;
}

/* ========== DAY LADIES ========== */
.day-ladies {
  background: #0d0d12;
}
.ladies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.lady-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}
.lady-card:hover {
  border-color: #e91e63;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.18);
}
.lady-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #333;
  color: #ccc;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
}
.status.online {
  background: #25d366;
  color: #fff;
}
.lady-info {
  padding: 18px;
  text-align: center;
}
.lady-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}
.lady-info h3 small {
  font-size: 0.85rem;
  color: #c9a0c9;
  font-weight: 400;
}
.tag {
  font-size: 0.85rem;
  color: #ff80ab;
  margin-bottom: 8px;
}
.rating {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 6px;
}
.rating span {
  color: #c9a0c9;
  font-size: 0.8rem;
}
.lady-info .price {
  font-size: 1.1rem;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========== EXTRA FACILITY ========== */
.extra {
  background: #110a12;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.extra-card {
  background: linear-gradient(160deg, #1c1220, #150e18);
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.extra-card:hover {
  border-color: #e91e63;
  transform: translateY(-4px);
}
.extra-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e91e63;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.extra-card i {
  font-size: 2.2rem;
  color: #e91e63;
  margin-bottom: 14px;
}
.extra-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.extra-card p {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== BOOK CTA ========== */
.book-cta {
  background: linear-gradient(135deg, #1a0a1a, #2d0a2d);
}
.book-box {
  text-align: center;
  background: rgba(233, 30, 99, 0.08);
  border: 1px solid #e91e63;
  border-radius: 20px;
  padding: 50px 30px;
}
.book-box h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}
.book-box p {
  color: #d4b8d4;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.book-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.note {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== REVIEWS ========== */
.reviews {
  background: #0d0d12;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.review-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 24px;
  transition: 0.3s;
}
.review-card:hover {
  border-color: #e91e63;
}
.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.95rem;
  color: #e0c0e0;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.reviewer span {
  font-size: 0.8rem;
  color: #c9a0c9;
}

/* ========== ABOUT ========== */
.about {
  background: #110a12;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  margin-bottom: 16px;
  color: #d4b8d4;
  font-size: 1.05rem;
}
.about-content strong {
  color: #ff80ab;
}

/* ========== PROCESS ========== */
.process {
  background: #0d0d12;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 20px;
}
.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.process-step h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== SKILLS ========== */
.skills {
  background: #110a12;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.skill-item {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e0c0e0;
  transition: 0.25s;
}
.skill-item:hover {
  border-color: #e91e63;
  background: #1c1220;
}
.skill-item i {
  color: #e91e63;
  font-size: 1.2rem;
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  background: #0d0d12;
  padding-bottom: 40px;
}
.disclaimer-box {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.disclaimer-box h2 {
  font-size: 1.4rem;
  color: #ff80ab;
  margin-bottom: 16px;
  text-align: center;
}
.disclaimer-box p {
  font-size: 0.9rem;
  color: #c9a0c9;
  margin-bottom: 12px;
  text-align: center;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a060c;
  border-top: 1px solid #2a1a2a;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col h4 {
  font-size: 1.05rem;
  color: #ff80ab;
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 0.9rem;
  color: #c9a0c9;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #d4b8d4;
}
.footer-col ul li a:hover {
  color: #ff80ab;
}
.footer-col ul li i {
  color: #e91e63;
  margin-right: 8px;
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid #2a1a2a;
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a080a0;
}

/* ========== FLOAT WHATSAPP ========== */
.float-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: 0.3s;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a0a1a;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid #3d1f3d;
  }
  .nav.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .top-left {
    gap: 12px;
    font-size: 0.8rem;
  }
}

/* Profile images */
.lady-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.lady-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Better Profile Cards (Example 3 style) ===== */
.ladies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.lady-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
.lady-card:hover {
  border-color: #e91e63;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(233, 30, 99, 0.25);
}
.lady-card a.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.lady-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #1a0a1a;
}
.lady-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.lady-card:hover .lady-img img {
  transform: scale(1.05);
}
/* Watermark on images - different style */
.lady-img::after {
  content: "JaipurVIP";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: #ff80ab;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 2;
}
.status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: #333;
  color: #ccc;
}
.status.online {
  background: #25d366;
  color: #fff;
}
.lady-info {
  padding: 16px;
  text-align: center;
}
.lady-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}
.lady-info h3 small {
  font-size: 0.85rem;
  color: #c9a0c9;
  font-weight: 400;
}
.tag {
  font-size: 0.85rem;
  color: #ff80ab;
  margin-bottom: 6px;
}
.rating {
  font-size: 0.85rem;
  color: #ffd700;
  margin-bottom: 6px;
}
.lady-info .price {
  font-size: 1.05rem;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Profile page watermark different */
.profile-photo {
  position: relative;
}
.profile-photo::after {
  content: "Jaipur VIP Escorts";
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #ff80ab;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* ===== Other Attractive Services / Locations ===== */
.locations-section {
  background: #110a12;
  padding: 60px 0;
}
.locations-section .section-header h2 {
  color: #fff;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.loc-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.25s;
  text-decoration: none;
}
.loc-btn.btn1 {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  border: 1px solid transparent;
}
.loc-btn.btn1:hover {
  background: linear-gradient(135deg, #f50057, #ab47bc);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233,30,99,0.3);
}
.loc-btn.btn2 {
  background: transparent;
  color: #ff80ab;
  border: 1px solid #e91e63;
}
.loc-btn.btn2:hover {
  background: rgba(233,30,99,0.15);
  color: #fff;
}
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== 8 PICTURES SECTION ===== */
.pics-section {
  background: #0d0d12;
  padding: 70px 0;
}

.pics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pic-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  display: block;
}

.pic-card:hover {
  border-color: #e91e63;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.25);
}

.pic-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.pic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.pic-card:hover .pic-img img {
  transform: scale(1.06);
}

.pic-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #333;
  color: #ccc;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  z-index: 2;
}

.pic-status.online {
  background: #25d366;
  color: #fff;
}

.pic-info {
  padding: 14px 12px;
  text-align: center;
}

.pic-info h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.pic-info p {
  font-size: 0.85rem;
  color: #ff80ab;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .pics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pic-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .pics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0d0d12;
  color: #f0e6f0;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 70px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 45px;
}
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.section-header p {
  color: #c9a0c9;
  font-size: 1.05rem;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s;
}
.btn.primary {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  border-color: transparent;
}
.btn.primary:hover {
  background: linear-gradient(135deg, #f50057, #ab47bc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.35);
}
.btn.outline {
  background: transparent;
  border-color: #e91e63;
  color: #ff80ab;
}
.btn.outline:hover {
  background: rgba(233, 30, 99, 0.15);
  color: #fff;
}
.btn.large {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #1a0a1a;
  border-bottom: 1px solid #3d1a3d;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4a5d4;
}
.top-left a {
  color: #ff80ab;
  font-weight: 600;
}
.top-right {
  display: flex;
  gap: 10px;
}
.top-right .btn-sm {
  background: #e91e63;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.top-right .whatsapp {
  background: #25d366;
}

/* ========== HEADER ========== */
.main-header {
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a1a2a;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-text span {
  color: #e91e63;
}
.logo small {
  font-size: 0.7rem;
  color: #c9a0c9;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 26px;
}
.nav a {
  color: #e0c0e0;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover {
  color: #ff80ab;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0a1a 0%, #2d0a2d 40%, #0d0d12 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(233, 30, 99, 0.18) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero-tagline {
  font-size: 1.25rem;
  color: #ff80ab;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-desc {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #d4b8d4;
  font-size: 1.05rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.hero-stats div {
  text-align: center;
}
.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: #e91e63;
  font-weight: 800;
}
.hero-stats span {
  font-size: 0.85rem;
  color: #c9a0c9;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========== TRUSTED ========== */
.trusted {
  background: #110a12;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.trusted-card {
  background: linear-gradient(145deg, #1c1220, #150e18);
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: 0.3s;
}
.trusted-card:hover {
  border-color: #e91e63;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.15);
}
.trusted-card i {
  font-size: 2rem;
  color: #e91e63;
  margin-bottom: 14px;
}
.trusted-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}
.trusted-card p {
  font-size: 0.92rem;
  color: #c9a0c9;
}

/* ========== TIERS ========== */
.tiers {
  background: #0d0d12;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.tier-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
  transition: 0.3s;
}
.tier-card:hover,
.tier-card.featured {
  border-color: #e91e63;
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.2);
}
.tier-card.featured {
  background: linear-gradient(160deg, #1f0f22, #2a1230);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-card h3 {
  text-align: center;
  margin: 12px 0 10px;
  font-size: 1.2rem;
  color: #fff;
}
.price {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ff80ab;
  margin-bottom: 16px;
}
.price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #c9a0c9;
}
.tier-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.tier-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #d4b8d4;
  border-bottom: 1px solid #2a1a2a;
}
.tier-card ul li:last-child {
  border-bottom: none;
}

/* ========== CATEGORIES ========== */
.categories {
  background: #110a12;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cat-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
  transition: 0.3s;
}
.cat-card:hover {
  border-color: #e91e63;
  transform: translateY(-4px);
  background: #1c1220;
}
.cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(233,30,99,0.2), rgba(156,39,176,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #e91e63;
}
.cat-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 0.85rem;
  color: #c9a0c9;
}

/* ========== DAY LADIES ========== */
.day-ladies {
  background: #0d0d12;
}
.ladies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.lady-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
}
.lady-card:hover {
  border-color: #e91e63;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.18);
}
.lady-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #333;
  color: #ccc;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
}
.status.online {
  background: #25d366;
  color: #fff;
}
.lady-info {
  padding: 18px;
  text-align: center;
}
.lady-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}
.lady-info h3 small {
  font-size: 0.85rem;
  color: #c9a0c9;
  font-weight: 400;
}
.tag {
  font-size: 0.85rem;
  color: #ff80ab;
  margin-bottom: 8px;
}
.rating {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 6px;
}
.rating span {
  color: #c9a0c9;
  font-size: 0.8rem;
}
.lady-info .price {
  font-size: 1.1rem;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ========== EXTRA FACILITY ========== */
.extra {
  background: #110a12;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.extra-card {
  background: linear-gradient(160deg, #1c1220, #150e18);
  border: 1px solid #3d1f3d;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.extra-card:hover {
  border-color: #e91e63;
  transform: translateY(-4px);
}
.extra-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e91e63;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.extra-card i {
  font-size: 2.2rem;
  color: #e91e63;
  margin-bottom: 14px;
}
.extra-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.extra-card p {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== BOOK CTA ========== */
.book-cta {
  background: linear-gradient(135deg, #1a0a1a, #2d0a2d);
}
.book-box {
  text-align: center;
  background: rgba(233, 30, 99, 0.08);
  border: 1px solid #e91e63;
  border-radius: 20px;
  padding: 50px 30px;
}
.book-box h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}
.book-box p {
  color: #d4b8d4;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.book-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.note {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== REVIEWS ========== */
.reviews {
  background: #0d0d12;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.review-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 24px;
  transition: 0.3s;
}
.review-card:hover {
  border-color: #e91e63;
}
.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.review-card p {
  font-size: 0.95rem;
  color: #e0c0e0;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.reviewer span {
  font-size: 0.8rem;
  color: #c9a0c9;
}

/* ========== ABOUT ========== */
.about {
  background: #110a12;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-content p {
  margin-bottom: 16px;
  color: #d4b8d4;
  font-size: 1.05rem;
}
.about-content strong {
  color: #ff80ab;
}

/* ========== PROCESS ========== */
.process {
  background: #0d0d12;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.process-step {
  text-align: center;
  padding: 20px;
}
.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.process-step h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: #c9a0c9;
}

/* ========== SKILLS ========== */
.skills {
  background: #110a12;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.skill-item {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e0c0e0;
  transition: 0.25s;
}
.skill-item:hover {
  border-color: #e91e63;
  background: #1c1220;
}
.skill-item i {
  color: #e91e63;
  font-size: 1.2rem;
}

/* ========== DISCLAIMER ========== */
.disclaimer {
  background: #0d0d12;
  padding-bottom: 40px;
}
.disclaimer-box {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.disclaimer-box h2 {
  font-size: 1.4rem;
  color: #ff80ab;
  margin-bottom: 16px;
  text-align: center;
}
.disclaimer-box p {
  font-size: 0.9rem;
  color: #c9a0c9;
  margin-bottom: 12px;
  text-align: center;
}

/* ========== FOOTER ========== */
.footer {
  background: #0a060c;
  border-top: 1px solid #2a1a2a;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col h4 {
  font-size: 1.05rem;
  color: #ff80ab;
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 0.9rem;
  color: #c9a0c9;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #d4b8d4;
}
.footer-col ul li a:hover {
  color: #ff80ab;
}
.footer-col ul li i {
  color: #e91e63;
  margin-right: 8px;
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid #2a1a2a;
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a080a0;
}

/* ========== FLOAT WHATSAPP ========== */
.float-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: 0.3s;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a0a1a;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid #3d1f3d;
  }
  .nav.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .top-left {
    gap: 12px;
    font-size: 0.8rem;
  }
}

/* Profile images */
.lady-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.lady-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Better Profile Cards (Example 3 style) ===== */
.ladies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.lady-card {
  background: #160e1a;
  border: 1px solid #3d1f3d;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
.lady-card:hover {
  border-color: #e91e63;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(233, 30, 99, 0.25);
}
.lady-card a.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.lady-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #1a0a1a;
}
.lady-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.lady-card:hover .lady-img img {
  transform: scale(1.05);
}
/* Watermark on images - different style */
.lady-img::after {
  content: "JaipurVIP";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.55);
  color: #ff80ab;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  pointer-events: none;
  z-index: 2;
}
.status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  background: #333;
  color: #ccc;
}
.status.online {
  background: #25d366;
  color: #fff;
}
.lady-info {
  padding: 16px;
  text-align: center;
}
.lady-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}
.lady-info h3 small {
  font-size: 0.85rem;
  color: #c9a0c9;
  font-weight: 400;
}
.tag {
  font-size: 0.85rem;
  color: #ff80ab;
  margin-bottom: 6px;
}
.rating {
  font-size: 0.85rem;
  color: #ffd700;
  margin-bottom: 6px;
}
.lady-info .price {
  font-size: 1.05rem;
  color: #e91e63;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Profile page watermark different */
.profile-photo {
  position: relative;
}
.profile-photo::after {
  content: "Jaipur VIP Escorts";
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #ff80ab;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* ===== Other Attractive Services / Locations ===== */
.locations-section {
  background: #110a12;
  padding: 60px 0;
}
.locations-section .section-header h2 {
  color: #fff;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.loc-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.25s;
  text-decoration: none;
}
.loc-btn.btn1 {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  border: 1px solid transparent;
}
.loc-btn.btn1:hover {
  background: linear-gradient(135deg, #f50057, #ab47bc);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233,30,99,0.3);
}
.loc-btn.btn2 {
  background: transparent;
  color: #ff80ab;
  border: 1px solid #e91e63;
}
.loc-btn.btn2:hover {
  background: rgba(233,30,99,0.15);
  color: #fff;
}
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 8 Pics Gallery Section ===== */
.pics-section {
  background: #0d0d12;
  padding: 60px 0;
}
.pics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pic-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3d1f3d;
  aspect-ratio: 3/4;
  transition: 0.3s;
}
.pic-card:hover {
  border-color: #e91e63;
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.25);
}
.pic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.pic-card:hover img {
  transform: scale(1.06);
}
.pic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,18,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: 0.3s;
}
.pic-card:hover .pic-overlay {
  opacity: 1;
}
.pic-overlay h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.pic-overlay span {
  color: #ff80ab;
  font-size: 0.8rem;
}
.pic-watermark {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  color: #ff80ab;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px) {
  .pics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}


/* ===================== CATEGORIES SECTION ===================== */
.cat-section {
  padding: 80px 0;
  background: #0a0014;
  position: relative;
}

.cat-header {
  text-align: center;
  margin-bottom: 50px;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(233, 30, 99, 0.08);
  border: 1px solid rgba(233, 30, 99, 0.2);
  color: #e91e63;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cat-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #f5c518;
  margin: 8px 0;
}

.cat-header p {
  color: #888;
  font-size: 0.95rem;
}

/* Grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.cat-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), transparent 70%);
  backdrop-filter: blur(4px);
}

.cat-card-inner {
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  z-index: 1;
}

.cat-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  transition: all 0.4s ease;
}

.cat-card:hover .cat-icon {
  transform: scale(1.1) rotate(3deg);
}

.cat-card-inner h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 6px;
  text-transform: capitalize;
}

.cat-card-inner p {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

.cat-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.cat-card:hover .cat-cta {
  gap: 12px;
}

/* Color variants */
.cat-pink .cat-label,
.cat-pink .cat-cta { color: #e91e63; }
.cat-pink .cat-icon { background: linear-gradient(135deg, #e91e63, #9c27b0); }
.cat-pink:hover { border-color: rgba(233, 30, 99, 0.4); }

.cat-rose .cat-label,
.cat-rose .cat-cta { color: #f43f5e; }
.cat-rose .cat-icon { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.cat-rose:hover { border-color: rgba(244, 63, 94, 0.4); }

.cat-amber .cat-label,
.cat-amber .cat-cta { color: #f59e0b; }
.cat-amber .cat-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cat-amber:hover { border-color: rgba(245, 158, 11, 0.4); }

.cat-blue .cat-label,
.cat-blue .cat-cta { color: #3b82f6; }
.cat-blue .cat-icon { background: linear-gradient(135deg, #3b82f6, #4f46e5); }
.cat-blue:hover { border-color: rgba(59, 130, 246, 0.4); }

.cat-fuchsia .cat-label,
.cat-fuchsia .cat-cta { color: #d946ef; }
.cat-fuchsia .cat-icon { background: linear-gradient(135deg, #d946ef, #a21caf); }
.cat-fuchsia:hover { border-color: rgba(217, 70, 239, 0.4); }

.cat-violet .cat-label,
.cat-violet .cat-cta { color: #8b5cf6; }
.cat-violet .cat-icon { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.cat-violet:hover { border-color: rgba(139, 92, 246, 0.4); }

.cat-red .cat-label,
.cat-red .cat-cta { color: #ef4444; }
.cat-red .cat-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.cat-red:hover { border-color: rgba(239, 68, 68, 0.4); }

.cat-emerald .cat-label,
.cat-emerald .cat-cta { color: #10b981; }
.cat-emerald .cat-icon { background: linear-gradient(135deg, #10b981, #059669); }
.cat-emerald:hover { border-color: rgba(16, 185, 129, 0.4); }

.cat-sky .cat-label,
.cat-sky .cat-cta { color: #0ea5e9; }
.cat-sky .cat-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.cat-sky:hover { border-color: rgba(14, 165, 233, 0.4); }

.cat-indigo .cat-label,
.cat-indigo .cat-cta { color: #6366f1; }
.cat-indigo .cat-icon { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.cat-indigo:hover { border-color: rgba(99, 102, 241, 0.4); }

.cat-orange .cat-label,
.cat-orange .cat-cta { color: #f97316; }
.cat-orange .cat-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.cat-orange:hover { border-color: rgba(249, 115, 22, 0.4); }


/* Force hide any unwanted top bar */
body > div:first-child:not(.top-bar):not(.main-header) {
  display: none !important;
}

/* Agar koi extra fixed bar hai */
[class*="available"],
[id*="available"],
.top-status,
.status-bar {
  display: none !important;
}