/* =========================================================
   Hyderabad Escorts — Prague Banner Color Theme
   Palette extracted from the magenta / neon-pink banner
   ========================================================= */
:root {
  --bg-deep: #14020c;
  --bg-body: #1a0512;
  --bg-card: #220814;
  --bg-card-alt: #2a0b1a;
  --bg-section: #120309;
  --magenta-dark: #4a0a28;
  --magenta-mid: #7a143c;
  --magenta: #c2185b;
  --pink: #ff2d7a;
  --pink-hot: #ff3d8a;
  --pink-neon: #ff5aa0;
  --pink-soft: #ff8fb8;
  --pink-glow: rgba(255, 45, 122, 0.45);
  --pink-glow-soft: rgba(255, 90, 160, 0.22);
  --text: #fff5f9;
  --text-muted: #e8c4d4;
  --text-dim: #c99aaf;
  --white: #ffffff;
  --header: linear-gradient(90deg, #5a0d32 0%, #c2185b 45%, #ff2d7a 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(194, 24, 91, 0.28), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(255, 45, 122, 0.16), transparent 50%),
    var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 50px;
}

a {
  color: var(--pink-hot);
  text-decoration: none;
}

a:hover {
  color: var(--pink-soft);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: var(--header);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px var(--pink-glow);
  border-bottom: 1px solid rgba(255, 90, 160, 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(--pink-glow);
}

.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: #ffe0ee;
  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('https://via.placeholder.com/1200x600?text=Hero+Image') 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(20, 2, 12, 0.82), rgba(194, 24, 91, 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: 60px 0;
}

h1, h2 {
  color: var(--pink-neon);
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 6px rgba(255, 90, 160, 0.9),
    0 0 18px rgba(255, 45, 122, 0.55),
    0 0 36px rgba(194, 24, 91, 0.35);
}

h3 {
  color: var(--pink-hot);
  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(--magenta);
  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(--pink-hot);
  box-shadow: 0 8px 22px var(--pink-glow);
}

.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(--pink-soft);
  margin-bottom: 14px;
}

@media (max-width: 1024px) {
  .profiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .profiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .profiles {
    grid-template-columns: 1fr;
  }
}

/* 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, #3a0d24, #220814);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--magenta);
  color: var(--pink-soft);
}

/* 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(--magenta-mid);
}

/* FAQs */
.faq {
  margin-top: 40px;
}

.faq details {
  background: var(--bg-card);
  margin-bottom: 10px;
  border-radius: 6px;
  padding: 10px;
  border: 1px solid var(--magenta-mid);
}

summary {
  font-weight: bold;
  cursor: pointer;
  color: var(--pink-neon);
}

.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;
}

.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(--pink-glow-soft);
  border: 1px solid var(--magenta);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(194, 24, 91, 0.85);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--pink);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .carousel-prev, .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* Footer */
.footer-bg {
  background:
    linear-gradient(180deg, rgba(20, 2, 12, 0.88), rgba(90, 13, 50, 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(18, 3, 9, 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(--pink-neon);
  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(--pink);
  color: #1a0512;
  padding: 0 4px;
}

.pinterest {
  display: block;
  color: var(--pink);
  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: #120309;
  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-color: #c2185b;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

.whatsapp {
  background-color: #ff2d7a;
  color: #fff;
  padding: 10px;
  flex: 1;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #7a143c, #4a0a28);
    padding: 20px;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  h1, h2 {
    font-size: 24px;
  }
  .profiles {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .footer-columns {
    flex-direction: column;
  }
  .bottom-bar {
    flex-direction: column;
  }
}

/* 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(--pink);
  border-radius: 8px;
  overflow: hidden;
}

.rates-table th, .rates-table td {
  padding: 15px 12px;
  text-align: center;
  border: 1px solid #4a2034;
  color: #fff;
}

.rates-table th {
  background: linear-gradient(90deg, #c2185b, #ff2d7a);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.rates-table tr:nth-child(even) {
  background: #2a0b1a;
}

.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(--pink-hot);
  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(--magenta);
  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(--pink-glow);
  border-color: var(--pink-hot);
}

.category-card h3 {
  color: var(--pink-neon);
  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(90deg, #c2185b, #ff2d7a);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 16px var(--pink-glow-soft);
}

@media (max-width: 768px) {
  .rates-table th, .rates-table td {
    padding: 12px 8px;
    font-size: 14px;
  }
  .category-card {
    padding: 20px 15px;
  }
}

/* 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(--magenta);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--pink-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(--pink-hot);
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #5a2040;
  border-radius: 6px;
  background: #1a0812;
  color: #fff;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}

.submit-btn {
  background: linear-gradient(90deg, #c2185b, #ff2d7a);
  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(90deg, #ff2d7a, #ff5aa0);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--pink-glow);
}

.form-note {
  padding: 0 30px 30px;
  color: #aaa;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contact-map-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    height: 350px;
  }
  .contact-form {
    padding: 25px;
  }
}
.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, #241018 0%, #1a0a12 100%);
  border: 1.5px solid #c2185b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.escort-card:hover {
  border-color: #ff3d8a;
  box-shadow: 0 16px 36px rgba(255, 90, 160, 0.22);
}

.escort-photo {
  position: relative;
  min-height: 240px;
  background: #2a0b1a;
}

.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(90deg, #c2185b, #ff2d7a);
  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: center;
}

.escort-body h3 {
  margin: 0 0 10px;
  color: #ff5aa0;
  font-size: 20px;
  line-height: 1.35;
}

.escort-desc {
  color: #e8c4d4;
  font-size: 15px;
  margin-bottom: 14px;
}

.escort-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #ff8fb8;
  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(90deg, #c2185b, #ff2d7a);
  color: #fff;
}

.btn-wa {
  background: #25d366;
  color: #fff;
}

.btn-details {
  background: transparent;
  color: #ff8fb8;
  border-color: #ff2d7a;
}

.btn:hover { text-decoration: none; }

@media (max-width: 820px) {
  .escort-card { grid-template-columns: 1fr; }
  .escort-photo, .escort-photo img {
    min-height: 280px;
    max-height: 340px;
  }
  .escort-body { padding: 18px 16px 20px; }
  .escort-body h3 { font-size: 18px; }
  .btn { flex: 1 1 30%; min-width: 0; }
}
.escort-card { align-items: stretch; }
.escort-body { justify-content: space-between; }
.escort-desc { margin-bottom: 16px; }
.city-book-section { padding: 50px 20px 60px; }
.city-lead {
  text-align: center;
  max-width: 760px;
  margin: -8px auto 28px;
  color: #e8c4d4;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.stat-box {
  background: #220814;
  border: 1px solid #c2185b;
  border-radius: 14px;
  text-align: center;
  padding: 16px 8px;
}
.stat-box b {
  display: block;
  color: #ff5aa0;
  font-size: 22px;
  text-shadow: 0 0 12px rgba(255,90,160,.45);
}
.stat-box span { color: #ff8fb8; font-size: 13px; }

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-card {
  background: linear-gradient(180deg, #2a0b1a, #1a0512);
  border: 1px solid #c2185b;
  border-radius: 14px;
  padding: 16px 14px 14px;
  text-decoration: none;
  color: #fff;
  transition: .25s;
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: #ff2d7a;
  box-shadow: 0 10px 24px rgba(255,45,122,.28);
  text-decoration: none;
}
.area-card h3 {
  margin: 0 0 6px;
  color: #ff5aa0;
  font-size: 17px;
}
.area-card p {
  margin: 0 0 10px;
  color: #e8c4d4;
  font-size: 13px;
}
.area-card em {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(90deg, #c2185b, #ff2d7a);
  padding: 4px 10px;
  border-radius: 20px;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 22px;
}
.meet-card {
  background: #220814;
  border: 1px solid #c2185b;
  border-radius: 16px;
  padding: 22px;
}
.meet-tag {
  display: inline-block;
  background: #ff2d7a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.meet-tag.out { background: #25d366; color: #062; }
.meet-card h3 { margin: 0 0 10px; color: #ff8fb8; }
.meet-card ul { margin: 0; padding-left: 18px; color: #e8c4d4; }
.meet-card li { margin-bottom: 6px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  background: #1a0512;
  border: 1px dashed #c2185b;
  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(90deg, #c2185b, #ff2d7a);
  color: #fff;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 8px;
}
.step b { display: block; color: #ff5aa0; margin-bottom: 4px; }
.step span { color: #e8c4d4; font-size: 13px; }

@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: 560px) {
  .stat-row, .area-grid, .meet-grid, .steps { grid-template-columns: 1fr; }
}