:root {
  --primary: #1a1a2e;   /* Deep Navy Blue (for header/footer) */
  --accent: #ff4d6d;    /* Coral Pink (buttons, highlights) */
  --light: #ffdce2;     /* Soft Pink Background */ 
  --muted: #fff0f4;     /* Lighter Pink for cards/sections */
  --text: #000;         /* Dark text for readability */
  --max: 1200px;
}
*{margin:0;padding:0;box-sizing:border-box} 
html,body{height:100%}
body{font-family:Arial, sans-serif;color:var(--text);background:#fff;line-height:1.6}
p {
  text-align: justify;
}
html { scroll-behavior: smooth; }
/* Reusable */
.container{max-width:var(--max);margin:0 auto;padding:0 16px}
.btn{display:inline-block;padding:12px 18px;border-radius:8px;background:var(--accent);color:#000;font-weight:700;text-decoration:none;transition:transform .15s ease}
.btn:hover{transform:translateY(-1px)}
.btn-outline{background:transparent;border:2px solid #000;color:#000}
.btn.sm{padding:10px 14px;border-radius:6px}
.btn.bar{width:48%;text-align:center}

/* Header */
.site-header{position:fixed;top:0;left:0;width:100%;background:var(--primary);color:#fff;z-index:1000;border-bottom:1px solid #222}
.nav-wrap{height:64px;display:flex;align-items:center;justify-content:space-between}
.logo{color:#fff;font-weight:900;letter-spacing:2px}
.logo span{color:var(--accent)}
.site-nav{display:flex;gap:20px}
.site-nav a{color:#fff;text-decoration:none;font-weight:700;opacity:.9}
.site-nav a:hover{opacity:1}
/* 🌍 Dropdown Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 16px;
  opacity: 0.9;
}

.dropbtn:hover {
  opacity: 1;
  color: var(--accent);
}

/* Main Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 230px;
  max-height: 380px;          /* ✅ Scroll limit for long city list */
  overflow-y: auto;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #fff;
}

/* Webkit Scroll */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}
.dropdown-content::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
.dropdown-content::-webkit-scrollbar-track {
  background: #fff;
}

.dropdown-content a {
  color: var(--primary);
  padding: 10px 14px;
  display: block;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f3f3f3;
}
.dropdown-content a:hover {
  background: var(--accent);
  color: #fff;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* 📱 Mobile Responsive */
@media (max-width: 992px) {
  /* Hamburger visible */
  .menu-toggle {
    display: flex;
  }

  /* Hide menu default */
  .site-nav {
    display: none;
    flex-direction: column;
  }

  /* Show menu on toggle */
  .site-nav.active {
    display: flex;
  }

  /* 🔽 Dropdown - Fix background + scrolling */
  .dropdown-content {
    position: static;
    display: none;
    background: #111;             /* ✅ Dark background so text visible */
    color: #fff;
    border-radius: 0;
    box-shadow: none;
    max-height: 250px;            /* ✅ Limit height */
    overflow-y: auto;             /* ✅ Scroll enabled */
  }

  /* When dropdown active, show it */
  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  /* Button style */
  .dropbtn {
    color: #fff;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  /* Links inside dropdown */
  .dropdown-content a {
    color: #fff;                   /* ✅ Text white */
    padding: 10px 0;
    border-bottom: 1px solid #222;
  }

  .dropdown-content a:hover {
    background: var(--accent);
    color: #fff;
  }

  /* Add scrollbar styling for mobile too */
  .dropdown-content::-webkit-scrollbar {
    width: 6px;
  }
  .dropdown-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
  }
  .dropdown-content::-webkit-scrollbar-track {
    background: #111;
  }
}

/* Mobile menu button */
.menu-toggle{display:none;flex-direction:column;gap:5px;background:transparent;border:0;cursor:pointer}
.menu-toggle span{display:block;width:24px;height:2px;background:#fff}

/* ✅ Breadcrumb - visible soft pink strip */
.breadcrumb {
  background: linear-gradient(90deg, #ffb6c1 0%, #ffc2d1 100%);
  border-bottom: 1px solid #ff99aa;
  font-size: 14px;
  padding: 10px 0;
  margin: 0;
  position: relative;
  z-index: 9;
  color: #666;
}

/* Link style */
.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #e91e63;
  text-decoration: underline;
}
/* Main spacing for fixed header & sticky bar */
main{padding-top:64px;padding-bottom:64px}

/* Hero */
.hero{padding:40px 0;background:var(--muted)}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center}
.hero h1{font-size:clamp(16px,2vw,24px);margin-bottom:6px}
.hero p{opacity:.9;margin-bottom:16px}
.hero-media img{width:100%;height:auto;border-radius:12px}
@media (max-width:768px){
  .hero-inner{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-media{
    order:1;
  }

  .hero-text{
    order:2;
  }
}

/* About */
.about{padding:56px 0;background:#ffd1dc}
.about h2{font-size:clamp(20px,2.4vw,28px);margin-bottom:12px}

/* Ads */
.latest-ads{padding:56px 0;background:#fff}
.latest-ads h2{font-size:clamp(20px,2.4vw,28px);margin-bottom:16px;text-align:center}
.grid{display:grid;gap:20px}
.ads-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:var(--muted);border-radius:12px;padding:12px;text-align:center}
.card img{width:100%;height:320px; aspect-ratio: 2 / 3; object-fit: cover; border-radius:8px;margin-bottom:8px }
.card h3{font-size:18px;margin:6px 0 2px}

/* Price */
.price{padding:56px 0;background:#fff}
.price h2{text-align:center;margin-bottom:8px;font-size:clamp(20px,2.4vw,28px)}
.price-note{text-align:center;font-size:14px;color:#666;margin-bottom:16px}
.table-wrap{overflow:auto}
table{width:100%;border-collapse:collapse}
th,td{border:1px solid #e5e7eb;padding:12px;text-align:center}
th { background: var(--accent); color: #000; font-weight: 700; }

/* FAQ */
.faq{padding:56px 0;background:#ffd1dc}
.faq h2{text-align:center;margin-bottom:14px;font-size:clamp(20px,2.4vw,28px)}
details{border:1px solid #eee;border-radius:8px;padding:12px;margin:10px 0;background:#fafafa}
summary{cursor:pointer;font-weight:700}

/* Fixed Call/WhatsApp Floating Buttons */ 
.foot-call{position:fixed;bottom:20px;right:20px;display:flex;flex-direction:column;gap:12px;z-index:9999}
.foot-call a{width:55px;height:55px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;text-decoration:none;box-shadow:0 4px 10px rgba(0,0,0,0.25);transition:transform .2s ease,box-shadow .2s ease}
.foot-call a:hover{transform:scale(1.08);box-shadow:0 6px 14px rgba(0,0,0,0.35)}
.foot-call .call-btn{background:#001f3f}
.foot-call .wa-btn{background:#25d366}


/* Responsive */
@media (max-width: 992px){
  .site-nav{display:none;position:absolute;top:64px;left:0;right:0;background:#000a;padding:16px;flex-direction:column}
  .site-nav.open{display:flex}
  .menu-toggle{display:flex}
  .hero-inner{grid-template-columns:1fr}
  .contact-inner{flex-direction:column;align-items:flex-start}
}

/* Base Container (Center Body) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Section Layout */
.profile-section {
  padding: 30px 0;
  background: #fff5f8;
}

/* Profile Card */
.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffeef3;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 25px;          /* ðŸ”¹ Gap between profiles */
  border: 1px solid #f9c8d8;    /* ðŸ”¹ Light elegant border */
}

/* Hover effect for premium touch */
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
/* Left: Image */
.profile-left {
  flex: 0 0 180px;
  position: relative;
}
.img-wrap {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.verified {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #117a2e;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Center: Content */
.profile-content {
  flex: 1;
  padding: 0 20px;
}
.title {
  font-size: 18px;
  color: #c2185b;
  margin-bottom: 6px;
  font-weight: 700;
}
.desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Info Row */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
  color: #444;
  border: 1px solid #ddd;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.info strong { color: #000; }

/* Right: Contact */
.profile-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.profile-contact .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.call { background: #e91e63; }
.whatsapp { background: #25d366; }

/* ✅ FINAL FIX – Image visible properly on mobile */
@media (max-width: 992px) {
  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px;
  }

  /* Image Box */
  .profile-left {
    flex: none !important;           /* Override desktop flex size */
    width: 100%;
    max-width: 360px;
    height: auto;                    /* Allow height to adjust naturally */
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }

  .profile-left img {
    width: 100%;
    height: auto;                    /* Keep natural image height */
    aspect-ratio: 3 / 4;             /* ✅ Maintain portrait proportion */
    object-fit: contain;             /* Show full image */
    object-position: center;
    background: #f9dce2;             /* Optional background for padding */
    border-radius: 10px;
    display: block;
  }

  /* Content spacing */
  .profile-content {
    padding: 0;
  }

  /* Buttons centered below */
  .profile-contact {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}

/* Tag Section (SEO + User Navigation) */
.tag-section {
  background: #fff0f4;
  padding: 50px 0;
  border-top: 2px solid #ffd1dc;
  border-bottom: 2px solid #ffd1dc;
}

.tag-section h2 {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #1a1a2e;
  margin-bottom: 24px;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;                /* ðŸ”¹ reduced gap so more tags fit */
  max-width: 1300px;        /* ðŸ”¹ wider container for 4â€“5 tags per row */
  margin: 0 auto;
}

.tag-list a {
  background: linear-gradient(135deg, #ff8fab, #ff4d6d);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;       /* ðŸ”¹ slightly wider padding */
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;      /* ðŸ”¹ keeps each tag on a single line */
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background: linear-gradient(135deg, #ff4d6d, #ff8fab);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* ðŸ“± Responsive Adjustments */
@media (max-width: 992px) {
  .tag-list {
    max-width: 1000px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .tag-list {
    gap: 8px;
  }
  .tag-list a {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ⭐ Review Section - Stylish Premium Look */
.reviews {
  background: #fff0f4; /* light pink tone matching site */
  padding: 60px 0;
  border-top: 2px solid #ffd6de;
  border-bottom: 2px solid #ffd6de;
}

.reviews h2 {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  color: #1a1a2e;
  margin-bottom: 30px;
  font-weight: 800;
}

/* Each Review Card */
.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 20px 24px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  position: relative;
  border-left: 5px solid #ff4d6d;
}

/* Star color tweak */
.review-card p {
  margin: 0;
  font-weight: 500;
}

.review-card strong {
  color: #c2185b;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 16px 18px;
    font-size: 14px;
  }
}
.info.rating {
  background: #fff9e6;
  border: 1px solid #ffe17a;
  color: #d97706;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.info.rating strong {
  color: #c2185b;
  font-weight: 700;
  margin-left: 4px;
}
/* ================================
   🔻 FOOTER STYLING (FINAL)
=================================== */
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 24px 0;
  text-align: center;
}

.foot-links {
  margin-bottom: 10px;
}
.foot-links a {
  color: #fff;
  opacity: 0.9;
  text-decoration: none;
  font-size: 15px;
  margin: 0 6px;
}
.foot-links a:hover {
  opacity: 1;
  color: var(--accent);
}

/* 🌍 Footer Location Links */
.footer-locations {
  margin: 20px 0;
  text-align: center;
}

.footer-locations h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-loc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-loc-grid a {
  background: rgba(255, 255, 255, 0.1);
  color: #ffdce2;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-loc-grid a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* 🔗 Social Icons (Header ke liye chhote) */
.social-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
}
.social-mini a {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  opacity: 0.85;
  transition: all 0.2s ease;
}
.social-mini a:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--accent);
}

/* 📸 Footer Social Links */
.site-footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  font-size: 16px;
}

.site-footer .social-links a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer .social-links a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ⚠️ Disclaimer */
.site-footer .disclaimer {
  font-size: 12px;
  color: #ddd;
  margin-top: 14px;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 📱 Responsive Adjustments */
@media (max-width: 992px) {
  .social-mini {
    justify-content: center;
    margin-top: 10px;
  }
  .footer-loc-grid {
    gap: 6px;
  }
  .site-footer .social-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* ================================
   18+ and cookies pop pup
=================================== */
/* AGE POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
}

.popup-box button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #000;
  color: #fff;
}

.popup-box .reject {
  background: red;
}

/* COOKIE POPUP */
.cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px;
  text-align: center;
  display: none;
  z-index: 9998;
}

.cookie-box button {
  background: #fff;
  color: #000;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
}
