/* Bangalore Queens–style adult theme
   Colors: black ground, yellow display titles, red CTAs
*/
:root {
  --bg: #070707;
  --bg2: #111;
  --red: #e10600;
  --red2: #b00000;
  --yellow: #f2d000;
  --text: #f3f3f3;
  --muted: #cfcfcf;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; cursor: pointer; }

.wrap { width: min(1200px, calc(100% - 28px)); margin-inline: auto; }

/* HEADER */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: stretch; justify-content: space-between;
  background: linear-gradient(90deg, #1a0505 0%, #3a0000 55%, var(--red) 55%);
  min-height: 74px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
}
.brand img { height: 52px; width: auto; }
.brand-name { line-height: 1.05; }
.brand-name b { display: block; color: var(--red); font-size: 22px; letter-spacing: .5px; }
.brand-name i { display: block; color: var(--yellow); font-style: italic; font-size: 18px; }
.phone-ribbon {
  margin-left: auto;
  background: var(--red);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  min-width: 280px;
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
  padding: 0 16px 0 40px;
  color: #fff;
  font-weight: 700;
}
.phone-ribbon small { display: block; font-size: 12px; letter-spacing: .6px; }
.phone-ribbon a { font-size: 20px; color: #fff; }
.menu-btn {
  width: 44px; height: 44px; background: var(--yellow); color: #111;
  font-size: 22px; border-radius: 4px;
}

/* HERO */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.28);
}
.hero-copy { position: relative; z-index: 1; padding: 80px 6vw 70px; max-width: 920px; }
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .88;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero h2 {
  margin: 18px 0 14px;
  color: var(--red);
  font-size: clamp(22px, 3.2vw, 36px);
  text-transform: uppercase;
  line-height: 1.15;
}
.hero p { max-width: 560px; color: #eee; font-size: 18px; }
.hero p em { color: var(--yellow); font-style: normal; font-weight: 700; }

.actions { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.btn-call {
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(225,6,0,.35);
}
.btn-wa {
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  color: #fff; font-weight: 800;
}

/* FLOAT */
.floaters {
  position: fixed; right: 16px; bottom: 22px; z-index: 60;
  display: grid; gap: 10px;
}
.floaters a {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.floaters .c { background: var(--red); }
.floaters .w { background: #25d366; }

/* SECTIONS */
.sec { padding: 56px 0; }
.sec.alt { background: #0d0d0d; }
h3.sec-title {
  text-align: center;
  color: var(--yellow);
  font-size: clamp(10px, 4vw, 30px);
  text-transform: uppercase;
  margin: 0 0 28px;
}
h3.sec-title span { color: var(--red); }
.copy { color: var(--muted); font-size: 17px; }
.copy strong { color: #fff; }
.red { color: var(--red); }
.yellow { color: var(--yellow); }

.split { display: grid; gap: 28px; }
@media (min-width: 900px) { .split { grid-template-columns: 1.2fr .8fr; align-items: start; } }

.panel {
  background: #151515;
  border: 1px solid #2a2a2a;
  padding: 22px;
}
.panel h4 { margin: 0 0 14px; color: #fff; font-size: 22px; }
.panel li { margin: 0 0 12px; color: #ddd; }
.panel strong { color: var(--yellow); }

.steps { display: grid; gap: 16px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: #151515;
  border-top: 3px solid var(--red);
  padding: 18px;
}
.step b { display: block; color: var(--yellow); font-size: 28px; }
.step h4 { margin: 6px 0 8px; color: #fff; }
.step p { margin: 0; color: #bbb; font-size: 14px; }

/* CARDS */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 700px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.card {
  background: #101010;
  border: 1px solid #262626;
  overflow: hidden;
}
.card .pic { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.card img { width: 100%; height: 100%; object-fit: cover; }
.avail {
  position: absolute; left: 8px; top: 8px;
  background: #128c2e; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 2px;
}
.tag {
  position: absolute; right: 8px; top: 8px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px;
}
.card-body { padding: 12px; }
.card-body h4 { margin: 0; color: #fff; text-transform: capitalize; font-size: 20px; }
.card-body .meta { color: var(--yellow); font-size: 13px; margin: 4px 0 8px; }
.chips span {
  display: inline-block;
  border: 1px solid #333;
  color: #ddd;
  font-size: 11px;
  padding: 2px 6px;
  margin: 0 4px 4px 0;
}
.card-body a.more {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}

.areas { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.areas a, .areas span {
  background: #171717;
  border: 1px solid #333;
  padding: 8px 12px;
  color: #eee;
  font-size: 13px;
}

.faq details {
  background: #141414;
  border: 1px solid #2a2a2a;
  padding: 14px 16px;
  margin-bottom: 8px;
}
.faq summary { cursor: pointer; color: var(--yellow); font-weight: 700; }
.faq p { margin: 10px 0 0; color: #ccc; }

footer {
  background: #000;
  border-top: 4px solid var(--red);
  padding: 36px 0 20px;
  color: #bbb;
}
.foot-grid { display: grid; gap: 20px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr; } }
footer h4 { color: var(--yellow); margin: 0 0 10px; }
footer a { color: #ddd; }
.copybar { margin-top: 22px; padding-top: 14px; border-top: 1px solid #222; font-size: 13px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

.agegate {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.88);
  display: grid; place-items: center; padding: 16px;
}
.agebox {
  width: min(460px, 100%);
  background: #111;
  border: 2px solid var(--red);
  padding: 28px;
  text-align: center;
}
.agebox h2 { color: var(--yellow); margin-top: 0; }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 70;
  background: #0b0b0b;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid #222; color: #fff; font-size: 18px; }
