:root {
  --primary: #ff3366;
  --accent: #00ff88;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0505;
  color: #eee;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  background: rgba(10,5,5,0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.phones .phone {
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
}


.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 18px 0;
  background: #1a0f0f;
  font-weight: 600;
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.2rem;
}

.girls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
 
}

.girl-card {
  background: #1a0f0f;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.girl-card:hover {
  transform: translateY(-10px);
}

.girl-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.girl-info {
  padding: 16px;
  text-align: center;
}

.category {
  background: #140c0c;
 
}

.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cat-tags a {
  background: #2a1a1a;
  padding: 12px 26px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 9999;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #000;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 480px) {
  .nav { flex-direction: column; text-align: center; }
}
:root {
  --primary: #ff3366;
  --accent: #00ff88;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0505;
  color: #eee;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Navbar */
header {
  background: rgba(10,5,5,0.98);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #ff3366;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.phones .phone {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.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(5px, -5px); }

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a0f0f;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
  }
  .nav-menu.active {
    transform: scaleY(1);
  }
}

/* Rest of your styles (hero, cards, etc.) */
.hero {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), 
              url('images/banner.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 6px;
}

.btn-primary { background: var(--primary); color: white; }
.btn-whatsapp { background: #25D366; color: white; }

.trust, .girls-grid, .category, footer {
  /* Keep your previous styles here */
}
.finder-section {
  background: #1a0a0a;
  padding: 50px 0 65px;
}

.finder-title {
  text-align: center;
  color: #ffcc00;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.finder-box {
  background: #2a0f0f;
  border: 4px solid #ff3366;
  border-radius: 20px;
  padding: 38px 45px;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: end;
  gap: 25px;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(255, 51, 102, 0.35);
}

.input-group {
  flex: 1;
  min-width: 270px;
}

.input-group label {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 600;
}

.input-group select {
  width: 100%;
  padding: 17px 20px;
  background: #1f0a0a;
  border: 2px solid #ff3366;
  color: white;
  border-radius: 10px;
  font-size: 1.05rem;
}

.search-btn {
  padding: 18px 48px;
  background: #ff3366;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.22rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255,51,102,0.4);
}

.search-btn:hover {
  background: #ff5577;
  transform: translateY(-4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .finder-box {
    padding: 30px 25px;
    flex-direction: column;
    align-items: stretch;
  }
  .search-btn {
    width: 100%;
  }
  .finder-title {
    font-size: 2rem;
  }
}
/* Main Promotional Section */
.main-content {
  background: linear-gradient(#1a0a0a, #0a0505);
  padding: 60px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Main Promotional Section */
.main-content {
  background: linear-gradient(#1a0a0a, #0a0505);
  padding: 60px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;   /* Left video : Center text */
  gap: 40px;
  align-items: center;
}

/* Video Size */
.promo-left {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.promo-media {
  width: 100%;
  height: 520px;           /* You can increase/decrease this */
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

/* Center Content */
.promo-center {
  text-align: left;        /* Changed to left for better look */
}

.promo-center h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #ff3366;
}

/* Mobile */
@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: 1fr;   /* Stack vertically on mobile */
    gap: 30px;
  }
  .promo-media {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .promo-media {
    height: 380px;
  }
  .promo-center h1 {
    font-size: 2.1rem;
  }
}
/* H2 Section */
.h2-section {
  background: #0f0a0a;
 
}

.section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2.6rem;
  margin-bottom: 40px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.section-content p {
  margin-bottom: 20px;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.content-list li {
  padding: 10px 0;
  font-size: 1.15rem;
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .h2-section {
    padding: 0px;
  }
}
/* Escorts Slider Section */
.escorts-slider-section {
  background: #1a0a0a;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.escorts-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.escorts-slider::-webkit-scrollbar {
  display: none;
}

.escort-card {
  min-width: 280px;
  background: #2a0f0f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: all 0.3s;
}

.escort-card:hover {
  transform: translateY(-10px);
}

.escort-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.card-info {
  padding: 18px;
  text-align: center;
}

.card-info h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.card-info p {
  color: #ccc;
  margin-bottom: 15px;
}

.btn-profile {
  background: #ff3366;
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
/* H3 Section */
.h3-section {
  background: #140c0c;
  }

.section-subtitle {
  color: var(--primary);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
}


.h3-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.h3-content p {
  margin-bottom: 22px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  padding: 10px 0 10px 10px;
  border-left: 4px solid var(--primary);
  margin-bottom: 12px;
  background: rgba(255,51,102,0.05);
}


/* Mobile */
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1.6rem;
  }
  .h3-section {
    padding: 50px 0;
  }
}
/* FAQ Section */
.faq-section {
  background: #0f0a0a;
  }

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a0f0f;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3a1f1f;
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '+';
  font-size: 1.6rem;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ddd;
}

.faq-answer p {
  padding-bottom: 20px;
}
/* Reviews Section */
.reviews-section {
  background: #1a0a0a;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.review-card {
  background: #2a0f0f;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid var(--primary);
}

.review-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #ddd;
}

.client-info {
  color: var(--accent);
  font-size: 0.95rem;
}
/* Floating Buttons */
.floating-call {
  position: fixed;
  bottom: 80px;           /* WhatsApp ke upar */
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;    /* Green color for call */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s;
}

.floating-call:hover {
  transform: scale(1.1);
  background: #20b958;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Mobile pe thoda adjust */
@media (max-width: 480px) {
  .floating-call {
    bottom: 85px;
  }
  .floating-whatsapp {
    bottom: 20px;
  }
}
/* Rates Table */
.rates-section {
  background: #1a0a0a;
 }

.rates-table {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.rates-table table {
  width: 100%;
  border-collapse: collapse;
  background: #2a0f0f;
  border-radius: 12px;
  overflow: hidden;
}

.rates-table th {
  background: #ff3366;
  color: white;
  padding: 20px 15px;
  text-align: center;
  font-size: 1.1rem;
}

.rates-table td {
  padding: 18px 15px;
  text-align: center;
  border-bottom: 1px solid #3a1f1f;
  color: #ddd;
}

.rates-table tr:hover {
  background: #3a1f1f;
}

.rates-table strong {
  color: #ffcc00;
}

.note {
  text-align: center;
  color: #aaa;
  margin-top: 30px;
  font-size: 0.95rem;
  font-style: italic;
}