/* ==========================================================================
   callgirlranchi.in — Premium Dark Theme
   Mobile-first · vanilla CSS · no external fonts
   ========================================================================== */

:root {
  --bg: #0e0a0d;
  --bg-alt: #171014;
  --bg-card: #1e1419;
  --bg-elev: #261820;
  --primary: #b3365c;
  --primary-2: #d9577f;
  --accent: #e8b4c2;
  --gold: #d9a86c;
  --wa: #25d366;
  --wa-dark: #128c4b;
  --text: #f3eaee;
  --muted: #a99aa1;
  --line: rgba(243, 234, 238, 0.10);
  --line-strong: rgba(243, 234, 238, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --fixbar-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--fixbar-h);
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container.narrow { width: min(860px, 92vw); }

/* ------------------------------------------------ buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--sans);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  padding: 13px 26px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:active { transform: scale(.97); }
.btn:hover { filter: brightness(1.08); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-call { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; }

/* ------------------------------------------------ top offer bar ---- */
.topbar {
  background: linear-gradient(90deg, #7a1230, var(--primary), #7a1230);
  color: #fff;
  text-align: center;
  padding: 9px 12px;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar strong { font-weight: 800; }
.topbar-link {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12.5px;
}

/* ------------------------------------------------ header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 10, 13, 0.96);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 22px; padding: 12px 0; }
.brand { flex: 0 1 auto; min-width: 0; display: flex; align-items: center; }
.brand img { height: 46px; width: auto; max-width: 100%; }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
  color: var(--text);
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover { color: var(--accent); background: rgba(179, 54, 92, 0.12); }

.header-actions { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 62;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s ease; }

@media (max-width: 920px) {
  .header-inner { gap: 12px; }
  .brand img { height: 40px; }
  .header-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 61;
    width: min(82vw, 320px);
    background: var(--bg-alt);
    border-left: 1px solid var(--line);
    flex-direction: column;
    gap: 4px;
    padding: 84px 20px 110px;
    margin-left: 0;
    transform: translateX(105%);
    transition: transform .28s ease;
    box-shadow: var(--shadow);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 13px 14px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .brand img { height: 34px; }
}

@media (max-width: 360px) {
  .header-inner { gap: 8px; }
  .brand img { height: 30px; }
}

/* ------------------------------------------------ hero / banner ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 20% -10%, rgba(179, 54, 92, 0.35), transparent 60%),
    radial-gradient(640px 420px at 85% 110%, rgba(224, 112, 154, 0.22), transparent 60%),
    linear-gradient(180deg, #160b11, var(--bg));
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><path d='M60 20l12 40 40 12-40 12-12 40-12-40-40-12 40-12z' fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.5'/></svg>");
  background-size: 120px;
}
.hero-inner { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(179, 54, 92, 0.14);
  border: 1px solid rgba(179, 54, 92, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(30px, 5.4vw, 56px);
  line-height: 1.15;
  max-width: 860px;
  margin: 0 auto 20px;
  font-weight: 700;
}
.hero-title em { color: var(--primary-2); font-style: normal; }
.hero-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: clamp(15px, 1.9vw, 17.5px);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 48px auto 0;
}
.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
}
.stat strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--accent); }
.stat span { font-size: 12.5px; color: var(--muted); }

@media (max-width: 560px) {
  .hero { padding: 56px 0 46px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 0; }
  .topbar { font-size: 12px; padding: 8px 10px; }
  .topbar-link { padding: 4px 12px; font-size: 11.5px; }
  .fix-btn strong { font-size: 15px; }
  .fix-btn small { font-size: 11px; }
}

/* ------------------------------------------------ sections ---- */
.section { padding: 74px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section-kicker {
  display: block;
  text-align: center;
  color: var(--primary-2);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  text-align: center;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.2;
  margin: 0 auto 16px;
  max-width: 760px;
}
.section-lead { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 38px; }
.center { text-align: center; margin-top: 30px; }

/* prose (SEO content) */
.prose { color: var(--text); }
.prose p { margin: 0 auto 18px; max-width: 820px; }
.prose strong { color: var(--accent); font-weight: 700; }

/* ------------------------------------------------ gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.g-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.g-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.g-card img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; transition: transform .4s ease; }
.g-card:hover img { transform: scale(1.05); }
.g-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(transparent, rgba(10, 6, 8, 0.92));
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.g-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 11px;
  border-radius: 999px;
}
.g-name { font-family: var(--serif); font-size: 20px; font-weight: 700; }
.g-meta { font-size: 12.5px; color: var(--accent); }

@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ------------------------------------------------ categories ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px auto;
  max-width: 1000px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.cat-card h3 { font-family: var(--serif); font-size: 20px; margin: 14px 0 8px; }
.cat-card p { color: var(--muted); font-size: 14px; }
.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(179, 54, 92, 0.35);
}
.cat-icon::before { content: attr(data-letter); }
.cat-1::before { content: "C"; }
.cat-2::before { content: "H"; }
.cat-3::before { content: "M"; }
.cat-4::before { content: "R"; }
.cat-5::before { content: "I"; }
.cat-6::before { content: "A"; }
.cat-2 { background: linear-gradient(135deg, #8a4b3c, #d98a6c); box-shadow: 0 10px 24px rgba(138, 75, 60, .35); }
.cat-3 { background: linear-gradient(135deg, #7b4b9e, #b57ad1); box-shadow: 0 10px 24px rgba(123, 75, 158, .35); }
.cat-4 { background: linear-gradient(135deg, #3d7fb0, #79b6dc); box-shadow: 0 10px 24px rgba(61, 127, 176, .35); }
.cat-5 { background: linear-gradient(135deg, #b3832f, #e0b85f); box-shadow: 0 10px 24px rgba(179, 131, 47, .35); }
.cat-6 { background: linear-gradient(135deg, #3f8f76, #7cc4a8); box-shadow: 0 10px 24px rgba(63, 143, 118, .35); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------ rates table ---- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.rate-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.rate-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 18px;
  text-align: left;
}
.rate-table td { padding: 15px 18px; border-top: 1px solid var(--line); font-size: 15px; }
.rate-table td:last-child { color: var(--accent); font-weight: 800; font-family: var(--serif); font-size: 17px; }
.rate-table tbody tr { transition: background .15s ease; }
.rate-table tbody tr:hover { background: rgba(179, 54, 92, 0.08); }

/* ------------------------------------------------ areas ---- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 26px auto 30px;
}
.area-list li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: background .15s ease, border-color .15s ease;
}
.area-list li:hover { background: rgba(179, 54, 92, 0.18); border-color: var(--primary); }

/* ------------------------------------------------ listing ---- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.l-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.l-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.l-card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.l-body { padding: 18px; position: relative; }
.l-tag {
  position: absolute;
  top: -12px; right: 14px;
  background: linear-gradient(135deg, var(--gold), #f0d6a4);
  color: #1a1206;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .5px;
}
.l-body h3 { font-family: var(--serif); font-size: 21px; margin-bottom: 4px; }
.l-meta { color: var(--muted); font-size: 13.5px; margin-bottom: 10px; }
.l-rate { font-family: var(--serif); color: var(--accent); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.l-rate span { font-size: 13px; color: var(--muted); font-weight: 400; font-family: var(--sans); }

@media (max-width: 1000px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .listing-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------ steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------ FAQ ---- */
.faq { max-width: 780px; margin: 10px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-2);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ------------------------------------------------ CTA ---- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% -20%, rgba(179, 54, 92, 0.4), transparent 60%),
    linear-gradient(180deg, var(--bg), #1d0f16);
}
.cta h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.cta p { color: var(--muted); max-width: 660px; margin: 0 auto 30px; }
.cta p strong { color: var(--accent); }

/* ------------------------------------------------ footer ---- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--accent);
}
.footer-col p { color: var(--muted); font-size: 14.5px; margin-top: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------ copyright ---- */
.copyright {
  background: #0a0709;
  border-top: 1px solid var(--line);
  padding: 26px 0 22px;
  text-align: center;
}
.copyright p { color: var(--muted); font-size: 13px; max-width: 860px; margin: 0 auto 8px; }
.copyright p:last-child { margin-bottom: 0; color: var(--muted); opacity: .7; }

/* ------------------------------------------------ fixed bottom bar ---- */
.fix-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--fixbar-h);
  display: flex;
  z-index: 70;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--line);
}
.fix-btn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-align: left;
  padding: 10px 14px;
  transition: filter .15s ease;
}
.fix-btn svg { width: 26px; height: 26px; fill: currentColor; flex: none; }
.fix-btn span { display: flex; flex-direction: column; line-height: 1.15; }
.fix-btn strong { font-size: 16px; }
.fix-btn small { font-size: 11.5px; opacity: .85; font-weight: 500; }
.fix-call { background: linear-gradient(90deg, var(--primary), var(--primary-2)); }
.fix-wa { background: linear-gradient(90deg, var(--wa-dark), var(--wa)); }
.fix-btn:active { filter: brightness(1.15); }

@media (min-width: 1000px) {
  .fix-btn:hover { filter: brightness(1.08); }
}

/* ------------------------------------------------ lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 5, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 560px);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .15s ease, transform .15s ease;
}
.lb-close:hover { opacity: 1; transform: rotate(90deg); }

/* ------------------------------------------------ reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
