/**
 * India Call Girl Night — modern UI layer (non-destructive overrides).
 * Works alongside legacy Bootstrap / mainstyle.css.
 */
:root {
  --icgn-font: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --icgn-bg-deep: #140208;
  --icgn-bg-card: rgba(255, 255, 255, 0.06);
  --icgn-border: rgba(255, 255, 255, 0.12);
  --icgn-text: #f4ece8;
  --icgn-text-muted: #c9beb8;
  --icgn-accent: #f5bd01;
  --icgn-accent-2: #d12b36;
  --icgn-radius: 14px;
  --icgn-radius-sm: 10px;
  --icgn-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --icgn-max: 1140px;
  --icgn-space: clamp(16px, 3vw, 28px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--icgn-font);
  -webkit-font-smoothing: antialiased;
}

/* Location / light-content shells */
.icgn-loc-wrap.icgn-surface-light {
  background: linear-gradient(180deg, #fffefb 0%, #f6f0ea 100%);
  color: #1a1210;
  border-radius: 0 0 var(--icgn-radius) var(--icgn-radius);
  box-shadow: var(--icgn-shadow);
  padding: clamp(20px, 4vw, 36px);
  margin-top: 12px;
}

.icgn-loc-wrap.icgn-surface-light h1 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
  color: #3c0003;
}

.icgn-loc-wrap.icgn-surface-light h2 {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #601018;
}

.icgn-loc-wrap.icgn-surface-light .icgn-prose {
  max-width: 72ch;
}

.icgn-loc-wrap.icgn-surface-light .icgn-prose p {
  color: #2d2420;
}

/* Breadcrumbs — pill style */
nav.icgn-bc {
  font-size: 13px;
  padding: 10px 14px;
  background: rgba(209, 43, 54, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(209, 43, 54, 0.15);
  margin-bottom: 20px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.icgn-loc-wrap.icgn-surface-light nav.icgn-bc {
  background: #fff;
  border-color: #ead8cf;
}

nav.icgn-bc a {
  font-weight: 600;
}

/* Chips — soft elevated pills */
.icgn-chip {
  gap: 10px !important;
}

.icgn-chip a {
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.icgn-chip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  opacity: 1 !important;
}

.icgn-loc-wrap.icgn-surface-light .icgn-chip a {
  border-color: rgba(209, 43, 54, 0.25);
}

/* Footer band below location shell */
.icgn-footer-band {
  margin-top: 28px;
  padding: 28px var(--icgn-space) 40px;
  border-radius: var(--icgn-radius);
  background: linear-gradient(145deg, #2a0a12 0%, #1a0508 100%);
  border: 1px solid var(--icgn-border);
  color: var(--icgn-text);
}

.icgn-footer-band h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--icgn-accent);
  margin: 0 0 14px;
}

/* Shared internal links block */
.icgn-crosslinks {
  margin: 28px 0;
  padding: 22px clamp(16px, 3vw, 26px);
  border-radius: var(--icgn-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--icgn-border);
  color: var(--icgn-text);
}

.icgn-loc-wrap.icgn-surface-light .icgn-crosslinks {
  background: #fff;
  border-color: #e8dcd4;
  color: #2d2420;
  box-shadow: 0 8px 28px rgba(60, 0, 3, 0.06);
}

.icgn-crosslinks h2 {
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--icgn-accent);
}

.icgn-loc-wrap.icgn-surface-light .icgn-crosslinks h2 {
  color: #601018;
}

.icgn-crosslinks p {
  margin: 0 0 12px;
  line-height: 1.7;
  font-size: 15px;
}

.icgn-crosslinks .icgn-crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
}

.icgn-crosslinks .icgn-crosslinks-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--icgn-radius-sm);
  background: rgba(245, 189, 1, 0.1);
  border: 1px solid rgba(245, 189, 1, 0.35);
  color: var(--icgn-accent) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.15s ease;
}

.icgn-loc-wrap.icgn-surface-light .icgn-crosslinks .icgn-crosslinks-grid a {
  background: rgba(209, 43, 54, 0.06);
  border-color: rgba(209, 43, 54, 0.22);
  color: #a01822 !important;
}

.icgn-crosslinks .icgn-crosslinks-grid a:hover {
  transform: translateY(-1px);
  background: rgba(245, 189, 1, 0.18);
}

.icgn-loc-wrap.icgn-surface-light .icgn-crosslinks .icgn-crosslinks-grid a:hover {
  background: rgba(209, 43, 54, 0.12);
}

/* Navbar polish */
#ftco-navbar.ftco-navbar-light {
  backdrop-filter: saturate(140%) blur(8px);
}

#ftco-navbar .container {
  max-width: var(--icgn-max);
}

.icgn-nav-spacer {
  height: 8px;
}

/* Booking strip on homepage */
.icgn-booking-strip {
  border-radius: 0 0 var(--icgn-radius-sm) var(--icgn-radius-sm);
  border: 1px solid rgba(245, 189, 1, 0.15);
  border-top: none;
}

/* WhatsApp row */
.icgn-wa-row {
  border-radius: var(--icgn-radius-sm);
  padding-top: 20px !important;
}

.icgn-wa-row .icgn-wa {
  border-radius: 999px !important;
  font-weight: 700 !important;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--icgn-accent);
  outline-offset: 3px;
}

/* Footer shortcut lists */
.icgn-footer-quicklinks-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px 20px;
}

.icgn-footer-quicklinks-ul li {
  padding: 4px 0;
}

.icgn-footer-band .icgn-footer-quicklinks-ul a {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
}

.icgn-footer-band .icgn-footer-quicklinks-ul a:hover {
  color: var(--icgn-accent) !important;
}

.icgn-cat-foot .icgn-footer-quicklinks-ul a {
  color: var(--icgn-accent) !important;
  opacity: 0.95;
}

.icgn-cat-foot .icgn-footer-quicklinks-ul a:hover {
  opacity: 1;
  text-decoration: underline !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .icgn-chip a,
  .icgn-crosslinks .icgn-crosslinks-grid a {
    transition: none;
  }
}
