/* =========================================================
   Gurgaon Escorts — Green & Sky Blue Color Theme
   Updated Palette with #3ade56 and #00BFFF
   ========================================================= */
:root {
  --bg-deep: #021214;
  --bg-body: #05181a;
  --bg-card: #082224;
  --bg-card-alt: #0b2b2e;
  --bg-section: #031012;
  --theme-dark: #0a4a3c;
  --theme-mid: #147a5b;
  --theme-main: #00BFFF;
  --accent-green: #3ade56;
  --accent-cyan: #00e5ff;
  --accent-light: #80f0a8;
  --glow-main: rgba(0, 191, 255, 0.45);
  --glow-soft: rgba(58, 222, 86, 0.22);
  --text: #f0ffff;
  --text-muted: #c4e8e4;
  --text-dim: #9ac9c3;
  --white: #ffffff;
  --header: linear-gradient(135deg, #3ade56, #00BFFF);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(58, 222, 86, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(0, 191, 255, 0.16), transparent 50%),
    var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 50px;
}

a {
  color: var(--accent-green);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px var(--glow-main);
  border-bottom: 1px solid rgba(58, 222, 86, 0.45);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.55),
    0 0 18px var(--glow-main);
}

.nav-links {
  display: flex;
  gap: 20px;
  transition: max-height 0.3s ease-in-out;
}

.nav-links a {
  color: #fff;
  font-weight: bold;
}

.nav-links a:hover {
  color: #e0f7ff;
  text-decoration: none;
  text-shadow: 0 0 10px #fff;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #fff;
}

/* Top Video */
.top-video {
  width: 100%;
  background: #000;
}

.top-video video {
  width: 100%;
  height: auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  background: url('') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(2, 18, 20, 0.82), rgba(0, 191, 255, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
}

/* Sections */
section {
  padding: 10px 0;
}

h1, h2 {
  color: var(--accent-green);
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(58, 222, 86, 0.9),
    0 0 18px rgba(0, 191, 255, 0.55),
    0 0 36px rgba(10, 74, 60, 0.35);
}

h3 {
  color: var(--theme-main);
  margin: 20px 0 10px;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-muted);
}

ul {
  margin: 10px 0;
  padding-left: 20px;
}

/* Profile List */
.profiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.profile {
  background: var(--bg-card);
  border: 1px solid var(--theme-main);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile:hover {
  transform: scale(1.05);
  border-color: var(--accent-green);
  box-shadow: 0 8px 22px var(--glow-main);
}

.profile img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.profile h3 {
  margin: 12px 0 4px;
}

.profile p {
  color: var(--accent-light);
  margin-bottom: 14px;
}

/* Categories & Areas */
.categories, .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.categories span, .areas span {
  background: linear-gradient(180deg, #0b2b2e, #082224);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--theme-main);
  color: var(--accent-light);
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.advantage {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--theme-mid);
}

/* FAQs */
.faq {
  margin-top: 40px;
}

.faq details {
  background: var(--bg-card);
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid var(--theme-mid);
}

summary {
  font-weight: bold;
  cursor: pointer;
  color: var(--accent-green);
}

.faq details p {
  margin-top: 10px;
}

/* Testimonials */
.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 0 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container .testimonial {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  background: var(--bg-card);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 18px var(--glow-soft);
  border: 1px solid var(--theme-main);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s, transform 0.2s;
}

.carousel-prev:hover,
.carousel-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Footer */
.footer-bg {
  background:
    linear-gradient(180deg, rgba(2, 18, 20, 0.88), rgba(10, 74, 60, 0.78)),
    url('https://via.placeholder.com/1200x400?text=Footer+Image') center/cover no-repeat;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.footer-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3, 16, 18, 0.55);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  margin: 0 10px;
}

.footer-column h3 {
  color: var(--accent-green);
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li a {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.footer-column p,
.footer-column li {
  color: var(--text-muted);
}

.footer-column mark {
  background: var(--theme-main);
  color: #05181a;
  padding: 0 4px;
}

.pinterest {
  display: block;
  color: var(--theme-main);
  font-size: 24px;
  margin-top: 10px;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.footer-title {
  text-align: center;
  font-size: 32px;
  color: #fff;
  background: #031012;
  padding: 10px 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.phone {
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

.whatsapp {
  background-color: #25d366;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

/* Rates & Categories Styling */
.rates-section, .categories-section {
  padding: 60px 0;
  background: var(--bg-section);
}

.rates-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.rates-table {
  overflow-x: auto;
  margin: 0 auto 40px;
  max-width: 100%;
}

.rates-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--theme-main);
  border-radius: 8px;
  overflow: hidden;
}

.rates-table th, .rates-table td {
  padding: 15px 12px;
  text-align: center;
  border: 1px solid #144040;
  color: #fff;
}

.rates-table th {
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.rates-table tr:nth-child(even) {
  background: #0b2b2e;
}

.rates-note ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

.rates-note li {
  margin-bottom: 12px;
  color: #ccc;
}

.rates-note li:before {
  content: "✔ ";
  color: var(--accent-green);
  font-weight: bold;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.category-card {
  background: var(--bg-card);
  border: 2px solid var(--theme-main);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--glow-main);
  border-color: var(--accent-green);
}

.category-card h3 {
  color: var(--accent-green);
  margin-bottom: 15px;
  font-size: 22px;
}

.category-card p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 16px var(--glow-soft);
}

/* Contact + Map Section */
.contact-map-section {
  padding: 60px 0;
  background: var(--bg-section);
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.map-column, .form-column {
  background: var(--bg-card);
  border: 1px solid var(--theme-main);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--glow-soft);
}

.map-wrapper {
  height: 450px;
}

.map-wrapper iframe {
  border: none;
}

.contact-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-green);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #144040;
  border-radius: 6px;
  background: #05181a;
  color: #fff;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--theme-main);
  box-shadow: 0 0 10px var(--glow-main);
}

.submit-btn {
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #00BFFF, #3ade56);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--glow-main);
}

.form-note {
  padding: 0 30px 30px;
  color: #aaa;
  font-size: 15px;
}

/* Escort Card List */
.escort-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 36px 0 50px;
}

.escort-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: linear-gradient(180deg, #0e2e30 0%, #082224 100%);
  border: 1.5px solid var(--theme-main);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  align-items: stretch;
}

.escort-card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 16px 36px rgba(58, 222, 86, 0.22);
}

.escort-photo {
  position: relative;
  min-height: 240px;
  background: #0b2b2e;
}

.escort-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}

.badge-premium {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

.escort-body {
  padding: 22px 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.escort-body h3 {
  margin: 0 0 10px;
  color: var(--accent-green);
  font-size: 20px;
  line-height: 1.35;
}

.escort-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.escort-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--accent-light);
  font-size: 14px;
  margin-bottom: 18px;
}

.escort-meta .verified { color: #7dffb3; }
.escort-meta .stars { color: #ffd36a; }

.escort-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-call {
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-details {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--theme-main);
}

.btn:hover { text-decoration: none; }

/* City Booking Section */
.city-book-section { padding: 50px 20px 60px; }

.city-lead {
  text-align: center;
  max-width: 760px;
  margin: -8px auto 28px;
  color: var(--text-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--theme-main);
  border-radius: 14px;
  text-align: center;
  padding: 16px 8px;
}

.stat-box b {
  display: block;
  color: var(--accent-green);
  font-size: 22px;
  text-shadow: 0 0 12px rgba(58, 222, 86, .45);
}

.stat-box span { color: var(--accent-light); font-size: 13px; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-card {
  background: linear-gradient(180deg, #0b2b2e, #05181a);
  border: 1px solid var(--theme-main);
  border-radius: 14px;
  padding: 16px 14px 14px;
  text-decoration: none;
  color: #fff;
  transition: .25s;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 10px 24px rgba(0, 191, 255, .28);
  text-decoration: none;
}

.area-card h3 {
  margin: 0 0 6px;
  color: var(--accent-green);
  font-size: 17px;
}

.area-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.area-card em {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  padding: 4px 10px;
  border-radius: 20px;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 22px;
}

.meet-card {
  background: var(--bg-card);
  border: 1px solid var(--theme-main);
  border-radius: 16px;
  padding: 22px;
}

.meet-tag {
  display: inline-block;
  background: var(--theme-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.meet-tag.out { background: #25d366; color: #042; }
.meet-card h3 { margin: 0 0 10px; color: var(--accent-light); }
.meet-card ul { margin: 0; padding-left: 18px; color: var(--text-muted); }
.meet-card li { margin-bottom: 6px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  background: var(--bg-body);
  border: 1px dashed var(--theme-main);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
}

.step i {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ade56, #00BFFF);
  color: #fff;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}

.step b { display: block; color: var(--accent-green); margin-bottom: 4px; }
.step span { color: var(--text-muted); font-size: 13px; }

/* =========================================================
   RESPONSIVE MEDIA QUERIES (Mobile-Specific Fixes Only)
   ========================================================= */

@media (max-width: 1024px) {
  .profiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row, .steps, .meet-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .escort-card { grid-template-columns: 1fr; }
  .escort-photo, .escort-photo img {
    min-height: 250px;
    max-height: 320px;
  }
  .escort-body { padding: 18px 16px 20px; }
  .escort-body h3 { font-size: 18px; }
  .btn { flex: 1; min-width: 0; }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 90px;
  }

  .container {
    padding: 0 15px;
  }

  nav {
    position: relative;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 100%;
    left: -15px;
    right: -15px;
    background: #05181a;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid var(--theme-main);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  h1, h2, .footer-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .profiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .profile img {
    height: 220px;
  }

  .carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .rates-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rates-table table {
    min-width: 500px;
  }

  .rates-table th, .rates-table td {
    padding: 10px 6px;
    font-size: 13px;
  }

  .category-card {
    padding: 20px 15px;
  }

  .contact-map-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 300px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 560px) {
  .stat-row, .area-grid, .meet-grid, .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .profiles {
    grid-template-columns: 1fr;
  }

  .escort-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .bottom-bar {
    flex-direction: row;
  }

  .phone, .whatsapp {
    font-size: 13px;
    padding: 12px 4px;
  }
}