/* Indian Chat Room - Global Styles (UTF-8) */
:root {
  --primary: #e82e2e;
  --dark: #111;
  --light: #fff;
  --muted: #666;
  --bg: #fafafa;
  --accent: #0d6efd;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; color:#222; background: var(--bg); line-height: 1.7; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

/* Utilities */
.shadow-sm { box-shadow: 0 6px 18px rgba(0,0,0,.05); }
.shadow-md { box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.rounded { border-radius: 12px; }
.hover-lift { transition: transform .2s ease, box-shadow .2s ease; }
.hover-lift:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.08); }
.sr-only { position:absolute; left:-9999px; }

/* Header */
header { position: sticky; top:0; z-index:999; background: rgba(255,255,255,0.92); -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid #eee; box-shadow: 0 6px 18px rgba(0,0,0,.05); transition: padding .2s ease, box-shadow .2s ease; }
.brand { display:flex; align-items:center; gap:12px; font-weight:800; color: var(--dark); letter-spacing:.2px; }
.brand img { width: 36px; height:36px; border-radius: 8px; }
.topbar { display:flex; align-items:center; justify-content: space-between; padding: 12px 0; gap:12px; }
nav { display:flex; align-items:center; }
.menu { list-style:none; display:flex; gap:22px; margin:0; padding:0; align-items:center; }
.menu a { color:#222; font-weight:600; padding:8px 4px; border-radius:6px; position:relative; transition: color .2s ease; }
.menu a:hover { color: var(--accent); text-decoration: none; }
.menu a::after { content:''; position:absolute; left:0; right:0; bottom:-8px; height:2px; background: transparent; transition: background .2s ease; }
.menu a:hover::after, .menu a.active::after { background: var(--accent); }
.badge { background: #f2f4ff; color:#222; padding:6px 10px; border-radius: 999px; font-size: 13px; margin-left: 10px; border:1px solid #e3e7ff; }
.cta { display:inline-block; background: var(--primary); color: var(--light); padding: 10px 16px; border-radius: 10px; font-weight:700; box-shadow: 0 6px 16px rgba(232,46,46,.25); }
.cta:hover { opacity: .92; text-decoration: none; }
.cta--accent { background: var(--accent); color: var(--light); box-shadow: 0 6px 16px rgba(13,110,253,.25); }
.cta:hover { opacity: .92; text-decoration: none; }

/* Mobile nav toggle (3 spans like screenshot) */
.nav-toggle { display:none; background:#fff; border: 1px solid #ddd; border-radius: 10px; padding:10px; font-weight:700; color:#333; box-shadow: 0 4px 12px rgba(0,0,0,.06); cursor:pointer; }
.nav-toggle span { display:block; width:26px; height:2px; background: var(--accent); margin:4px 0; border-radius:2px; transition: transform .2s ease, opacity .2s ease; }
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity:0; }
header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Compact header on scroll */
header.header--compact .topbar { padding: 8px 0; }
header.header--compact .brand img { width:32px; height:32px; }
header.header--compact { box-shadow: 0 8px 20px rgba(0,0,0,.06); }

/* Mobile nav: full‑screen white panel below the sticky header */
@media (max-width: 980px) {
  .badge { display:none; }
  .menu {
    display:none;
    position: fixed;
    top: var(--header-offset-mobile);
    left:0; right:0; bottom:0;
    background:#fff;
    border-top:1px solid #eee;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    padding: 18px 18px 28px;
    z-index: 1001;
    overflow-y: auto;
  }
  .menu li { margin:0; }
  .menu a { padding:12px 8px; display:block; text-align:center; font-weight:700; color:#222; }
  .nav-toggle { display:block; }
  header.nav-open .menu { display:flex; flex-direction: column; gap:10px; }
  body.menu-open { overflow:hidden; }
}

/* Mobile header color: force solid white bar and readable dark text */
@media (max-width: 980px) {
  header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .topbar { background: #fff; }
  .brand span { color: #111; }
  .menu { background: #fff; }
  .nav-toggle { background: #fff; color:#111; border-color:#ddd; }
}

/* Mobile overlay z-index fix: ensure menu panel is above article content */
@media (max-width: 980px) {
  header { z-index: 10000 !important; }
  header.nav-open .menu { z-index: 10001 !important; }
  /* Reduce stacking of article/hero parts on mobile to avoid overlay conflicts */
  .blog-article-page .article,
  .blog-article-page .article__header,
  .blog-article-page .article__toc,
  .blog-article-page img { z-index: 0 !important; }
  .hero--banner { z-index: 0 !important; }
  .hero--banner::before { z-index: 0 !important; }
}

/* Hero */
.hero { background: var(--light); }
.hero .wrap { display:grid; grid-template-columns: 1.2fr 1fr; gap:24px; padding: 28px 0; align-items:center; }
.hero h1 { font-size: clamp(26px, 4vw, 42px); margin:0; }
.hero p { color: var(--muted); margin: 12px 0 18px; }
.hero img { width:100%; height:auto; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.hero .btns { display:flex; gap:12px; flex-wrap: wrap; }
@media (max-width: 980px) { .hero .wrap { grid-template-columns: 1fr; } }

/* Features */
.features { padding: 12px 0 8px; }
.features .grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.feature { background: #fff; border:1px solid #eee; border-radius: 12px; padding:16px; display:flex; gap:12px; align-items:flex-start; transition: box-shadow .2s ease; }
.feature svg { width:32px; height:32px; flex:0 0 32px; }
.feature h3 { margin:0; font-size: 18px; }
.feature p { margin:6px 0 0; color: #555; font-size: 14px; }
.feature:hover { box-shadow: 0 10px 24px rgba(0,0,0,.06); }
@media (max-width: 980px) { .features .grid { grid-template-columns: 1fr; } }

/* Categories */
.categories { padding: 20px 0; }
.categories h2 { margin-bottom: 8px; }
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; transition: transform .2s ease, box-shadow .2s ease; }
.card img { width:100%; height:auto; aspect-ratio: 16/9; object-fit: cover; }
.card .content { padding: 14px; }
.card h3 { margin:0 0 6px; font-size: 18px; }
.card p { margin:0 0 10px; color:#555; font-size: 14px; }
.card .actions { display:flex; gap:8px; flex-wrap: wrap; }
.card .actions a { font-size: 13px; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.08); }
@media (max-width: 980px) { .cards { grid-template-columns: 1fr; } }

/* How it works */
.how { background:#fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.steps { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 12px 0 22px; }
.step { background:#fafafa; border:1px solid #eee; border-radius:12px; padding:14px; }
.step h4 { margin:0 0 8px; }
.step p { margin:0; color:#555; font-size: 14px; }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

/* Cities */
.cities { padding: 20px 0; }
.city-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.city { background:#fff; border:1px solid #eee; border-radius:8px; padding:10px; text-align:center; font-weight:600; }
@media (max-width: 980px) { .city-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials { padding: 16px 0; }
.quote { background:#fff; border:1px solid #eee; border-radius:12px; padding:12px; margin-bottom:10px; }
.quote strong { color: #333; }

/* CTA block */
.final-cta { background: var(--light); padding: 20px 0; }
.final-cta h2 { margin:0 0 8px; }
.noscript-note { background:#f4f8ff; border:1px solid #e3eaff; border-left:4px solid var(--accent); padding:14px 12px; border-radius:8px; margin:12px 0; color:#333; }

/* Footer */
footer { background:#111; color:#eee; padding: 20px 20px; }
footer a { color:#eee; }
.footer-links { display:flex; gap:12px; flex-wrap:wrap; }
.legal { color:#bbb; font-size: 13px; margin-top:8px; }

/* Header alignment tweaks */
.topbar nav { margin-left: auto; }
@media (max-width: 980px) {
  .topbar { gap: 10px; }
  .nav-toggle { margin-left: auto; }
}

/* Hero Banner (reference screenshot 4) */
.hero--banner { position: relative; color: #fff; background: url('images/indianchatroom4.jpg') center/cover no-repeat; }
.hero--banner::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,12,20,0.55), rgba(6,12,20,0.55)); }
.hero--banner .hero__inner { position:relative; min-height: 440px; display:flex; align-items:center; justify-content:center; padding: 60px 0; }
.hero--banner .hero__content { text-align:center; max-width: 760px; }
.hero--banner h1 { margin:0 0 10px; color:#fff; font-size: clamp(32px, 5vw, 56px); }
.hero--banner p { margin:0 0 16px; color: #eaf1ff; }
.hero--banner .btns { justify-content:center; }
@media (max-width:980px){ .hero--banner .hero__inner { min-height: 360px; padding: 36px 0; } }

/* City cards */
.city-cards { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city-card { background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; }
.city-card img { width:100%; aspect-ratio: 16/9; object-fit: cover; }
.city-content { padding: 14px; }
.city-card h3 { margin:0 0 6px; font-size: 18px; }
.city-card p { margin:0; color:#555; font-size: 14px; }
@media (max-width:1240px){ .city-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:980px){ .city-cards { grid-template-columns: 1fr; } }

/* Typography overhaul inspired by reference screenshot */
:root {
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --text-xxl: clamp(40px, 5vw, 64px);
  --text-xl: clamp(28px, 3.6vw, 42px);
  --text-lg: clamp(22px, 2.6vw, 32px);
  --text-md: 18px;
  --text-sm: 14px;
  /* Sticky header safe offsets for scoped pages */
  --header-offset-desktop: clamp(96px, 12vh, 140px);
  --header-offset-mobile: clamp(88px, 11vh, 128px);
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: 1.8;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: #151515;
  letter-spacing: 0.2px;
}

h1 { font-size: var(--text-xxl); line-height: 1.16; font-weight: 800; }
section h2 { font-size: var(--text-xl); line-height: 1.2; font-weight: 800; text-align: center; }
h3 { font-size: var(--text-lg); line-height: 1.25; font-weight: 700; }
h4 { font-size: 20px; line-height: 1.3; font-weight: 700; }

p { margin: 12px 0; color: #2a2a2a; }
.small, .legal { font-size: var(--text-sm); color: #767676; }

/* Buttons spacing tweaks */
.btns .cta, .final-cta .cta { font-weight: 700; border-radius: 12px; }

/* Hero copy alignment consistent with screenshot */
.hero--banner .hero__content { max-width: 800px; }
.hero--banner p { font-size: 18px; }

/* Testimonials readability */
.testimonials .quote p { font-size: 16px; }
.testimonials .quote strong { font-weight: 700; }

/* Footer grid: 4 columns, refined styling */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 20px 0;
}
.footer__col h4 { margin:0 0 10px; color: var(--accent); font-size: 18px; font-weight: 800; }
.footer__col ul { list-style:none; margin:0; padding:0; }
.footer__col li { margin:8px 0; color:#fff; }
.footer__col a { color:#fff; opacity:1; }
.footer__col a:hover { color:#fff; text-decoration: underline; }
footer { background:#0f0f0f; }
.footer__bottom { border-top:1px solid #1b1b1b; padding-top:12px; margin-top:12px; display:flex; align-items:center; justify-content:center; }

@media (max-width:1240px){ .footer__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width:980px){ .footer__grid { grid-template-columns: 1fr 1fr; } }

/* Headings centered across sections */
section h2 {
  text-align: center;
}

/* Testimonials layout and style */
.testimonials .quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .testimonials .quotes {
    grid-template-columns: 1fr;
  }
}
.testimonials .quote {
  position: relative;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.testimonials .quote::before {
  content: "\201C"; /* opening quotation mark */
  position: absolute;
  left: 12px;
  top: -6px;
  font-size: 56px;
  line-height: 1;
  color: rgba(13, 110, 253, 0.18);
  pointer-events: none;
}
.testimonials .quote strong {
  display: block;
  margin-bottom: 6px;
  color: #222;
}

/* Final CTA buttons centered, following hero button alignment */
.final-cta p {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer uniform size: match copyright text */
footer { font-size: var(--text-sm); }
footer .legal { color:#fff; }
/* Mobile-specific footer refinements */
@media (max-width: 640px) {
  footer { font-size: 14px; line-height: 1.6; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .footer__col h4 { font-size: 16px; margin: 0 0 8px; }
  .footer__col li { margin: 6px 0; }
  .footer__col a { display: inline-block; padding: 3px 0; line-height: 1.6; }
  .footer__bottom { font-size: 14px; padding-top: 10px; }
}
.footer__bottom {
  justify-content: center;
  text-align: center;
}
/* Profiles: match screenshot style with 3 cards per row */
.profiles { padding: 20px 0; }
.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.profile-card { background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.profile-card img { width:100%; aspect-ratio: 3/4; object-fit: cover; }
.profile-content { padding: 14px; }
.profile-card h3 { margin:0 0 6px; font-size: 18px; }
.profile-card p { margin:0 0 10px; color:#555; font-size: 14px; }
.profile-card .actions { display:flex; gap:8px; flex-wrap: wrap; }
.profile-card .actions a { font-size: 13px; }
@media (max-width:1240px){ .profiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:640px){ .profiles-grid { grid-template-columns: 1fr; } }

/* Header CTA buttons: wider, white text, with spacing */
.topbar .menu { gap: 26px; }
.topbar .cta { padding: 10px 30px; font-size: 14px; border-radius: 12px; min-width: 110px; color: #fff; }
.topbar .cta--accent { background: var(--accent); color: #fff; }
.topbar .cta:hover { opacity: .95; text-decoration: none; }
/* Ensure header buttons keep layout on mobile menu */
@media (max-width: 980px) {
  .menu .cta { display:block; width:100%; text-align:center; margin: 6px 0; }
}

/* About page scoped styles */
.about-hero {
  position: relative;
  padding: 80px 0;
  color: var(--text-on-dark, #fff);
  background: #0e1a28 url("images/INDIANCHAT.jpg") center / cover no-repeat;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.5));
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero__content {
  max-width: 860px;
}
.about-hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
}
.about-hero h1 {
  margin: 8px 0 16px;
  color: #fff;
}
.about-hero p {
  color: #eaf2ff;
}

/* Main about content */
.about {
  margin-top: 40px;
  margin-bottom: 60px;
}
.about-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  padding: 24px;
  margin-bottom: 24px;
}
.about-section h2 {
  margin-top: 0;
}
.about-section .small {
  color: #5b6675;
  font-size: 14px;
}

.about-list {
  margin: 14px 0 0 0;
  padding-left: 20px;
}
.about-list li {
  margin: 8px 0;
}

/* Responsive grid blocks */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.about-grid figure {
  margin: 0;
}
.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  border: 1px dashed rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 16px;
  background: #fafbff;
}
.stat h3 {
  margin: 0 0 8px;
}

/* CTA */
.about-cta {
  text-align: center;
}
.about-cta .btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 8px;
}
.about-cta .cta {
  min-width: 180px;
}

/* Media queries */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 54px 0;
  }
}

/* FAQ page specific styles - scoped to prevent conflicts */
.faq-hero {
  background: linear-gradient(135deg, #6610f2 0%, #0d6efd 100%);
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  margin-top: 1rem;
}

.faq-content {
  padding: 3rem 0;
}

.faq-navigation {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid #e9ecef;
}

.faq-navigation h2 {
  color: #0d6efd;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.faq-navigation li {
  margin: 0;
}

.faq-navigation a {
  display: block;
  padding: 0.8rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-navigation a:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-1px);
}

.faq-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.faq-section:last-of-type {
  border-bottom: none;
}

.faq-section > h2 {
  color: #0d6efd;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #0d6efd;
  display: inline-block;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-color: #0d6efd;
}

.faq-item h3 {
  background: #f8f9fa;
  color: #333;
  font-size: 1.2rem;
  margin: 0;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid #e9ecef;
}

.faq-item h3:hover {
  background: #e9ecef;
  color: #0d6efd;
}

.faq-item h3:after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #0d6efd;
  transition: transform 0.3s ease;
}

.faq-item h3[aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #555;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-cta {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.faq-cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-cta .cta {
  background: white;
  color: #28a745;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.faq-cta .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-cta .cta--accent {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.faq-cta .cta--accent:hover {
  background: white;
  color: #28a745;
}

.faq-cta img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.faq-contact {
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.faq-contact h2 {
  color: #0d6efd;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-contact > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-method h4 {
  color: #0d6efd;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-method p {
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* FAQ controls and search */
.faq-controls {
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  background: var(--surface, #f8f9fb);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
}

.faq-search { grid-column: 1 / 2; }

.faq-search input[type="text"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
}
.faq-search input[type="text"]:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.faq-btn {
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #1e88e5;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.faq-btn:hover { filter: brightness(1.05); }
.faq-btn:active { transform: translateY(1px); }

.faq-btn--secondary { background: #2e7d32; border-color: rgba(46,125,50,0.2); }
.faq-btn--muted { background: #546e7a; border-color: rgba(84,110,122,0.2); }

.faq-search__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: #546e7a;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .faq-controls {
    grid-template-columns: 1fr;
  }
  .faq-actions { justify-content: flex-start; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsiveness for FAQ page */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2rem;
  }
  
  .faq-hero p {
    font-size: 1rem;
  }
  
  .faq-content {
    padding: 2rem 0;
  }
  
  .faq-navigation {
    padding: 1.5rem;
  }
  
  .faq-navigation ul {
    grid-template-columns: 1fr;
  }
  
  .faq-section > h2 {
    font-size: 1.6rem;
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
  }
  
  .faq-item h3:after {
    right: 1.2rem;
  }
  
  .faq-answer {
    padding: 1.2rem;
  }
  
  .faq-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  
  .faq-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .faq-cta-buttons {
    justify-content: center;
  }
  
  .faq-contact {
    padding: 2rem 1.5rem;
  }
  
  .faq-contact h2 {
    font-size: 1.6rem;
  }
  
  .faq-contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-method {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    padding: 3rem 0 2rem;
  }
  
  .faq-hero h1 {
    font-size: 1.8rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  
  .faq-item h3:after {
    right: 1rem;
    font-size: 1.3rem;
  }
  
  .faq-answer {
    padding: 1rem;
  }
  
  .faq-cta {
    padding: 2rem 1rem;
  }
  
  .faq-cta-content h2 {
    font-size: 1.5rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
  }
}

/* Category page scoped styles - do not affect other pages */
.categories-page .cat-hero .hero__content h1 { color:#fff; }
.categories-page .cat-hero .hero__content p { color:#eaf1ff; }
.categories-page .cat-hero__image { margin-top: 12px; }

.categories-page .cat-intro { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.categories-page .cat-intro p { color:#444; }

.categories-page .cat-grid { margin: 8px auto 24px; }
.categories-page .cat-grid__cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width:1240px){ .categories-page .cat-grid__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:700px){ .categories-page .cat-grid__cards { grid-template-columns: 1fr; } }

.categories-page .cat-card { background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden; display:flex; flex-direction:column; transition: transform .2s ease, box-shadow .2s ease; }
.categories-page .cat-card img { width:100%; aspect-ratio: 16/9; object-fit: cover; }
.categories-page .cat-card__content { padding: 14px; }
.categories-page .cat-card__content h3 { margin:0 0 6px; font-size:20px; }
.categories-page .cat-card__content p { color:#555; font-size:15px; }
.categories-page .cat-card__actions { display:flex; gap:10px; flex-wrap:wrap; }
.categories-page .cat-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }

.categories-page .cat-guide { background:#fff; border:1px solid #eee; border-radius:12px; padding:16px; margin:18px auto; }
.categories-page .cat-steps { counter-reset: step; list-style:none; padding-left:0; }
.categories-page .cat-steps li { position:relative; padding-left:42px; margin:12px 0; }
.categories-page .cat-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.categories-page .cat-safety { background:#fcfcff; border:1px solid #e9ecef; border-radius:12px; padding:16px; }
.categories-page .cat-safety__list { list-style:none; padding-left:0; display:grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.categories-page .cat-safety__list li { background:#fff; border:1px solid #eee; border-radius:12px; padding:12px; box-shadow: 0 6px 14px rgba(0,0,0,.04); }
@media (max-width:860px){ .categories-page .cat-safety__list { grid-template-columns: 1fr; } }

.categories-page .cat-faqs { margin:24px auto; }
.categories-page .cat-faq { background:#fff; border:1px solid #eee; border-radius:12px; padding:0; margin:10px 0; overflow:hidden; }
.categories-page .cat-faq > summary { cursor:pointer; padding:14px; font-weight:600; background:#f8f9fa; outline:none; position:relative; }
.categories-page .cat-faq > summary::marker { content:""; }
.categories-page .cat-faq > summary::after { content:"+"; position:absolute; right:14px; top:50%; transform: translateY(-50%); color:#0d6efd; font-size:20px; }
.categories-page .cat-faq[open] > summary::after { content:"–"; }
.categories-page .cat-faq > div { padding:14px; color:#555; border-top:1px solid #eee; }

.categories-page .cat-cta { text-align:center; }
.categories-page .cat-cta .cta { min-width:180px; }

.categories-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }
.categories-page .cat-hero__image img { border-radius:12px; box-shadow: 0 12px 26px rgba(0,0,0,.18); }

/* Footer override: desktop 3 equal columns on category page */
.categories-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .categories-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .categories-page .cat-steps li { padding-left:36px; }
  .categories-page .cat-steps li::before { width:28px; height:28px; }
}

/* Safety page scoped styles - do not affect other pages */
.safety-page .safety-hero .hero__content h1 { color:#fff; }
.safety-page .safety-hero .hero__content p { color:#eaf1ff; }
.safety-page .safety-hero__image img { border-radius:12px; box-shadow: 0 12px 26px rgba(0,0,0,.18); }

.safety-page .s-intro, .safety-page .s-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.safety-page .s-intro p { color:#444; }

.safety-page .s-list { list-style: disc; padding-left: 22px; }
.safety-page .s-list li { margin:8px 0; color:#444; }

.safety-page .s-steps { counter-reset: step; list-style:none; padding-left:0; }
.safety-page .s-steps li { position:relative; padding-left:42px; margin:12px 0; }
.safety-page .s-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.safety-page .s-checklist { list-style: square; padding-left: 22px; }
.safety-page .s-checklist li { margin:8px 0; }

.safety-page .s-reminders { margin: 20px auto; }
.safety-page .s-reminders__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:860px){ .safety-page .s-reminders__grid { grid-template-columns: 1fr; } }
.safety-page .s-card { background:#fff; border:1px solid #eee; border-radius:12px; padding:14px; box-shadow: 0 6px 14px rgba(0,0,0,.04); }
.safety-page .s-card h3 { margin-top:4px; }

.safety-page .s-notice { background:#fff8e1; border:1px solid #f7e0a8; border-radius:12px; }
.safety-page .s-note { color:#555; font-size: 15px; }

.safety-page .s-cta .cta { min-width:180px; }
.safety-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer override: desktop 3 equal columns on safety page */
.safety-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .safety-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .safety-page .s-steps li { padding-left:36px; }
  .safety-page .s-steps li::before { width:28px; height:28px; }
}

/* Anonymous page scoped styles */
.anonymous-page .anonymous-hero.hero--banner { background: url('images/anonymouschat.jpg') center/cover no-repeat; }
.anonymous-page .hero__content h1 { color:#fff; }
.anonymous-page .hero__content p { color:#eaf1ff; }

.anonymous-page .a-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.anonymous-page .a-list { list-style: disc; padding-left: 22px; }
.anonymous-page .a-list li { margin:8px 0; color:#444; }

.anonymous-page .a-checklist { list-style: square; padding-left: 22px; }
.anonymous-page .a-checklist li { margin:8px 0; }

.anonymous-page .a-steps { counter-reset: step; list-style:none; padding-left:0; }
.anonymous-page .a-steps li { position:relative; padding-left:42px; margin:12px 0; }
.anonymous-page .a-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.anonymous-page .a-faqs details { background:#fafafa; border:1px solid #eee; border-radius:10px; padding:12px; margin:8px 0; }
.anonymous-page .a-faqs summary { cursor:pointer; font-weight:700; }

.anonymous-page .a-note { color:#555; font-size: 15px; }
.anonymous-page .a-cta .cta { min-width:180px; }

/* Footer override for anonymous page */
.anonymous-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .anonymous-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .anonymous-page .a-steps li { padding-left:36px; }
  .anonymous-page .a-steps li::before { width:28px; height:28px; }
}

/* Anonymous page scoped styles - do not affect other pages */
.anonymous-page .hero--banner { background-image: url('images/anonymouschat.jpg'); }
.anonymous-page .anon-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.anonymous-page .anon-list { list-style: disc; padding-left:22px; }
.anonymous-page .anon-list li { margin:8px 0; color:#444; }
.anonymous-page .anon-checklist { list-style: square; padding-left:22px; }
.anonymous-page .anon-checklist li { margin:8px 0; color:#444; }
.anonymous-page .anon-steps { counter-reset: step; list-style:none; padding-left:0; }
.anonymous-page .anon-steps li { position:relative; padding-left:42px; margin:12px 0; }
.anonymous-page .anon-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }
.anonymous-page .anon-note { color:#555; font-size:15px; }
.anonymous-page .anon-cta .cta { min-width:180px; }
.anonymous-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer override: desktop 3 equal columns on anonymous page */
.anonymous-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .anonymous-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .anonymous-page .anon-steps li { padding-left:36px; }
  .anonymous-page .anon-steps li::before { width:28px; height:28px; }
}

/* =====================
   Lesbian Chat page scoped styles
   ===================== */
.lesbian-page .lesbian-hero.hero--banner { background: url('images/lesbianchat.jpg') center/cover no-repeat; }
.lesbian-page .hero__content h1 { color:#fff; }
.lesbian-page .hero__content p { color:#eaf1ff; }

.lesbian-page .l-section { margin-block: 24px; }
.lesbian-page h1, .lesbian-page h2 { line-height: 1.2; margin: 0 0 12px; }
.lesbian-page p { line-height: 1.7; }

.lesbian-page .l-list { list-style: disc; padding-left: 1.25rem; }
.lesbian-page .l-checklist { list-style: none; padding-left: 0; }
.lesbian-page .l-checklist li { position: relative; padding-left: 1.25rem; margin: 8px 0; }
.lesbian-page .l-checklist li::before { content: "✔"; position: absolute; left: 0; color: #d63384; }
.lesbian-page .l-steps { list-style: decimal; padding-left: 1.25rem; }
.lesbian-page .l-steps li { margin: 10px 0; }
.lesbian-page .l-note { background: #fff8f4; border-left: 4px solid #ff9bb3; padding: 10px 12px; border-radius: 6px; color: #5a3b43; margin-top: 12px; }

/* Gallery */
.lesbian-page .l-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lesbian-page .l-gallery figure { border: 1px solid #eee; border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.lesbian-page .l-gallery img { display: block; width: 100%; height: auto; }
.lesbian-page .l-gallery figcaption { font-size: 0.95rem; color: #666; padding: 8px 10px; text-align: center; }

/* CTA */
.lesbian-page .l-cta { padding: 24px 0; background: #f7f7fb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.lesbian-page .l-cta h2 { margin-bottom: 8px; }
.lesbian-page .cta-btn { display: inline-block; padding: 10px 16px; border-radius: 6px; text-decoration: none; font-weight: 600; background: #d63384; color: #fff; }
.lesbian-page .cta-btn:hover { background: #b42a6f; }

/* Responsive */
@media (min-width: 768px) {
  .lesbian-page .l-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .lesbian-page .l-section { margin-block: 32px; }
}

/* =====================
   Gay Chat page scoped styles
   ===================== */
.gay-page .g-section { 
  margin-block: 24px; 
}
.gay-page h1, .gay-page h2 { 
  line-height: 1.2; 
  margin: 0 0 12px; 
}
.gay-page p { 
  line-height: 1.7; 
}
.gay-page .g-list { 
  list-style: disc; 
  padding-left: 1.25rem; 
}
.gay-page .g-checklist { 
  list-style: none; 
  padding-left: 0; 
}
.gay-page .g-checklist li { 
  position: relative; 
  padding-left: 1.25rem; 
  margin: 8px 0; 
}
.gay-page .g-checklist li::before { 
  content: "✔"; 
  position: absolute; 
  left: 0; 
  color: #28a745; 
}
.gay-page .g-steps { 
  list-style: decimal; 
  padding-left: 1.25rem; 
}
.gay-page .g-steps li { 
  margin: 10px 0; 
}
.gay-page .g-note { 
  background: #fff8e6; 
  border-left: 4px solid #ff9f1a; 
  padding: 10px 12px; 
  border-radius: 6px; 
  color: #5a4b2e; 
  margin-top: 12px; 
}

/* Gallery */
.gay-page .g-gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px; 
}
.gay-page .g-gallery figure { 
  border: 1px solid #eee; 
  border-radius: 8px; 
  overflow: hidden; 
  background: #fff; 
  box-shadow: 0 1px 2px rgba(0,0,0,0.04); 
}
.gay-page .g-gallery img { 
  display: block; 
  width: 100%; 
  height: auto; 
}
.gay-page .g-gallery figcaption { 
  font-size: 0.95rem; 
  color: #666; 
  padding: 8px 10px; 
  text-align: center; 
}

/* FAQs */
.gay-page .g-faqs details { 
  border: 1px solid #eee; 
  border-radius: 8px; 
  background: #fff; 
  padding: 10px 12px; 
  margin: 8px 0; 
}
.gay-page .g-faqs summary { 
  font-weight: 600; 
  cursor: pointer; 
  list-style: none; 
}
.gay-page .g-faqs summary::-webkit-details-marker { 
  display: none; 
}
.gay-page .g-faqs details[open] { 
  border-color: #ddd; 
}
.gay-page .g-faqs summary::after { 
  content: "+"; 
  float: right; 
  color: #666; 
}
.gay-page .g-faqs details[open] summary::after { 
  content: "–"; 
}

/* CTA */
.gay-page .g-cta { 
  padding: 24px 0; 
  background: #f7f7fb; 
  border-top: 1px solid #eee; 
  border-bottom: 1px solid #eee; 
}
.gay-page .g-cta h2 { 
  margin-bottom: 8px; 
}
.gay-page .g-cta .cta, 
.gay-page .g-btn { 
  display: inline-block; 
  padding: 10px 16px; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 600; 
  margin-right: 8px; 
}
.gay-page .g-btn { 
  background: #222; 
  color: #fff; 
}
.gay-page .g-btn:hover { 
  background: #000; 
}

/* Responsive */
@media (min-width: 768px) { 
  .gay-page .g-gallery-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
  }
}
@media (min-width: 1024px) { 
  .gay-page .g-section { 
    margin-block: 32px; 
  }
}

/* Scoped styles for sugar-dating.html */
.sugar-page .sugar-hero.hero--banner { background: url('images/indiansugardaddy.jpg') center/cover no-repeat; }
.sugar-page .hero__content h1 { color:#fff; }
.sugar-page .hero__content p { color:#eaf1ff; }

.sugar-page .sd-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.sugar-page .sd-list { list-style: disc; padding-left: 22px; }
.sugar-page .sd-list li { margin:8px 0; color:#444; }

.sugar-page .sd-checklist { list-style: square; padding-left: 22px; }
.sugar-page .sd-checklist li { margin:8px 0; color:#444; }

.sugar-page .sd-steps { counter-reset: step; list-style:none; padding-left:0; }
.sugar-page .sd-steps li { position:relative; padding-left:42px; margin:12px 0; }
.sugar-page .sd-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.sugar-page .sd-faqs details { background:#fafafa; border:1px solid #eee; border-radius:10px; padding:12px; margin:8px 0; }
.sugar-page .sd-faqs summary { cursor:pointer; font-weight:700; }

.sugar-page .sd-note { color:#555; font-size: 15px; }
.sugar-page .sd-cta .cta { min-width:180px; }
.sugar-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer grid override within sugar page only */
.sugar-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .sugar-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .sugar-page .sd-steps li { padding-left:36px; }
  .sugar-page .sd-steps li::before { width:28px; height:28px; }
}

/* Sugar Chat Gallery */
.sugar-page .sd-gallery-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:14px; }
@media (max-width:980px){ .sugar-page .sd-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width:560px){ .sugar-page .sd-gallery-grid { grid-template-columns: 1fr; } }
.sugar-page .sd-gallery figure { position:relative; overflow:hidden; border-radius:12px; border:1px solid #eee; box-shadow: 0 6px 16px rgba(0,0,0,.04); background:#fff; }
.sugar-page .sd-gallery img { width:100%; height:220px; object-fit:cover; display:block; }
.sugar-page .sd-gallery figcaption { padding:10px 12px; font-size:14px; color:#444; }

/* Safety page scoped styles - do not affect other pages */
.safety-page .safety-hero .hero__content h1 { color:#fff; }
.safety-page .safety-hero .hero__content p { color:#eaf1ff; }
.safety-page .safety-hero__image img { border-radius:12px; box-shadow: 0 12px 26px rgba(0,0,0,.18); }

.safety-page .s-intro, .safety-page .s-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.safety-page .s-intro p { color:#444; }

.safety-page .s-list { list-style: disc; padding-left: 22px; }
.safety-page .s-list li { margin:8px 0; color:#444; }

.safety-page .s-steps { counter-reset: step; list-style:none; padding-left:0; }
.safety-page .s-steps li { position:relative; padding-left:42px; margin:12px 0; }
.safety-page .s-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.safety-page .s-checklist { list-style: square; padding-left: 22px; }
.safety-page .s-checklist li { margin:8px 0; }

.safety-page .s-reminders { margin: 20px auto; }
.safety-page .s-reminders__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width:860px){ .safety-page .s-reminders__grid { grid-template-columns: 1fr; } }
.safety-page .s-card { background:#fff; border:1px solid #eee; border-radius:12px; padding:14px; box-shadow: 0 6px 14px rgba(0,0,0,.04); }
.safety-page .s-card h3 { margin-top:4px; }

.safety-page .s-notice { background:#fff8e1; border:1px solid #f7e0a8; border-radius:12px; }
.safety-page .s-note { color:#555; font-size: 15px; }

.safety-page .s-cta .cta { min-width:180px; }
.safety-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer override: desktop 3 equal columns on safety page */
.safety-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .safety-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .safety-page .s-steps li { padding-left:36px; }
  .safety-page .s-steps li::before { width:28px; height:28px; }
}

/* Anonymous page scoped styles */
.anonymous-page .anonymous-hero.hero--banner { background: url('images/anonymouschat.jpg') center/cover no-repeat; }
.anonymous-page .hero__content h1 { color:#fff; }
.anonymous-page .hero__content p { color:#eaf1ff; }

.anonymous-page .a-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.anonymous-page .a-list { list-style: disc; padding-left: 22px; }
.anonymous-page .a-list li { margin:8px 0; color:#444; }

.anonymous-page .a-checklist { list-style: square; padding-left: 22px; }
.anonymous-page .a-checklist li { margin:8px 0; }

.anonymous-page .a-steps { counter-reset: step; list-style:none; padding-left:0; }
.anonymous-page .a-steps li { position:relative; padding-left:42px; margin:12px 0; }
.anonymous-page .a-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.anonymous-page .a-faqs details { background:#fafafa; border:1px solid #eee; border-radius:10px; padding:12px; margin:8px 0; }
.anonymous-page .a-faqs summary { cursor:pointer; font-weight:700; }

.anonymous-page .a-note { color:#555; font-size: 15px; }
.anonymous-page .a-cta .cta { min-width:180px; }
.anonymous-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer override: desktop 3 equal columns on anonymous page */
.anonymous-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .anonymous-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .anonymous-page .anon-steps li { padding-left:36px; }
  .anonymous-page .anon-steps li::before { width:28px; height:28px; }
}

/* Anonymous page scoped styles - do not affect other pages */
.anonymous-page .hero--banner { background-image: url('images/anonymouschat.jpg'); }
.anonymous-page .anon-section { background:#fff; border:1px solid #eee; border-radius:14px; padding:18px; margin:18px auto; box-shadow: 0 6px 16px rgba(0,0,0,.04); }
.anonymous-page .anon-list { list-style: disc; padding-left:22px; }
.anonymous-page .anon-list li { margin:8px 0; color:#444; }
.anonymous-page .anon-checklist { list-style: square; padding-left:22px; }
.anonymous-page .anon-checklist li { margin:8px 0; color:#444; }
.anonymous-page .anon-steps { counter-reset: step; list-style:none; padding-left:0; }
.anonymous-page .anon-steps li { position:relative; padding-left:42px; margin:12px 0; }
.anonymous-page .anon-steps li::before { counter-increment: step; content: counter(step); position:absolute; left:0; top:0; width:32px; height:32px; border-radius:8px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }
.anonymous-page .anon-note { color:#555; font-size:15px; }
.anonymous-page .anon-cta .cta { min-width:180px; }
.anonymous-page .cta:focus { outline:3px solid rgba(13,110,253,0.3); outline-offset:2px; }

/* Footer override: desktop 3 equal columns on anonymous page */
.anonymous-page footer .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width:980px){ .anonymous-page footer .footer__grid { grid-template-columns: 1fr; } }

@media (max-width:480px){
  .anonymous-page .anon-steps li { padding-left:36px; }
  .anonymous-page .anon-steps li::before { width:28px; height:28px; }
}

/* BDSM page scoped styles */
.bdsm-page { font-size: 1rem; line-height: 1.7; color: #222; }
.bdsm-page .b-section { margin: 3rem auto; max-width: 980px; }
.bdsm-page h1, .bdsm-page h2 { color: #111; }
.bdsm-page h2 { font-size: 1.7rem; margin: 0 0 1rem; }
.bdsm-page h3 { font-size: 1.15rem; margin: 1.25rem 0 .5rem; color: #333; }
.bdsm-page p { margin: .75rem 0; }

/* Hero */
.bdsm-hero { background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.25)), url('images/bdsmchat.jpg') center/cover no-repeat; color: #fff; padding: 4rem 0; }
.bdsm-hero .hero__inner { max-width: 1080px; margin: 0 auto; }
.bdsm-hero .hero__content h1 { font-size: 2.2rem; margin-bottom: .75rem; }
.bdsm-hero .hero__content p { max-width: 760px; }
.bdsm-hero .btns { margin-top: 1rem; }
.bdsm-hero .cta { display: inline-block; padding: .6rem 1rem; border-radius: 6px; background: #ff3b3b; color: #fff; margin-right: .5rem; text-decoration: none; }
.bdsm-hero .cta--accent { background: #23272a; }

/* Lists */
.bdsm-page .b-list, .bdsm-page .b-checklist { padding-left: 1.25rem; }
.bdsm-page .b-list li { margin: .4rem 0; }
.bdsm-page .b-checklist { list-style: none; padding-left: 0; }
.bdsm-page .b-checklist li { position: relative; padding-left: 1.5rem; margin: .45rem 0; }
.bdsm-page .b-checklist li::before { content: "✔"; position: absolute; left: 0; color: #12b886; }
.bdsm-page .b-list--donts li::marker { color: #ff3b3b; }

/* Steps */
.bdsm-page .b-steps { counter-reset: step; padding-left: 0; list-style: none; }
.bdsm-page .b-steps li { counter-increment: step; position: relative; padding-left: 2.2rem; margin: .5rem 0; }
.bdsm-page .b-steps li::before { content: counter(step) "."; position: absolute; left: 0; background: #23272a; color: #fff; border-radius: 50%; width: 1.6rem; height: 1.6rem; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; }

/* Note */
.bdsm-page .b-note { background: #f7f7f9; border-left: 4px solid #12b886; padding: .75rem 1rem; border-radius: 6px; margin: 1rem 0; color: #333; }

/* Gallery */
.bdsm-page .b-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.bdsm-page .b-gallery figure { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.bdsm-page .b-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bdsm-page .b-gallery figcaption { font-size: .9rem; padding: .5rem .75rem; color: #444; }

/* CTA */
.bdsm-page .final-cta { background: linear-gradient(180deg, #fff, #f5f7fb); padding: 2.5rem 0; }
.bdsm-page .b-cta .btns { margin-top: .75rem; }
.bdsm-page .b-cta-btn { display: inline-block; background: #12b886; color: #fff; padding: .65rem 1.15rem; border-radius: 6px; text-decoration: none; box-shadow: 0 2px 0 #0fa67a; }
.bdsm-page .b-cta-btn:hover { background: #0fa67a; }

/* Responsive */
@media (max-width: 992px) {
  .bdsm-page .b-section { padding: 0 1rem; }
  .bdsm-hero { padding: 3.2rem 0; }
  .bdsm-hero .hero__content h1 { font-size: 1.9rem; }
  .bdsm-page .b-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bdsm-hero { padding: 2.4rem 0; }
  .bdsm-hero .cta { padding: .5rem .85rem; }
  .bdsm-page .b-gallery-grid { grid-template-columns: 1fr; }
}

/* Feet Fetish Page (scoped styles) */
.feet-page { font-size: 1rem; line-height: 1.75; color: #222; }
.feet-page .f-section { margin: 2.2rem auto; max-width: 980px; }
.feet-page h1{ color: #f0ebeb; }
.feet-page h2 { font-size: 1.8rem; margin: 0 0 1rem; }
.feet-page h3 { font-size: 1.15rem; margin: 1.25rem 0 .6rem; color: #333; }
.feet-page p { margin: .8rem 0; }

/* Hero override to use feet image */
.feet-hero.hero--banner { background: url('images/feetfetish.jpg') center/cover no-repeat; }
/* Keep existing overlay from .hero--banner::before */
.feet-hero .hero__inner { min-height: 420px; }
.feet-hero .btns .cta { padding: .6rem 1rem; border-radius: 8px; }

/* Lists */
.feet-page .f-list { padding-left: 1.25rem; }
.feet-page .f-list li { margin: .45rem 0; }
.feet-page .f-list--donts li::marker { color: #e82e2e; }
.feet-page .f-checklist { list-style: none; padding-left: 0; }
.feet-page .f-checklist li { position: relative; padding-left: 1.6rem; margin: .5rem 0; }
.feet-page .f-checklist li::before { content: "✔"; position: absolute; left: 0; color: #12b886; }

/* Numbered steps */
.feet-page .f-steps { counter-reset: step; list-style: none; padding-left: 0; }
.feet-page .f-steps li { counter-increment: step; position: relative; padding-left: 2.2rem; margin: .55rem 0; }
.feet-page .f-steps li::before { content: counter(step) "."; position: absolute; left: 0; background: #23272a; color: #fff; border-radius: 50%; width: 1.6rem; height: 1.6rem; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; }

/* Notes */
.feet-page .f-note { background: #f7f7f9; border-left: 4px solid #12b886; padding: .8rem 1rem; border-radius: 8px; margin: 1rem 0; color: #333; }

/* Gallery */
.feet-page .f-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.feet-page .f-gallery figure { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,.08); }
.feet-page .f-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feet-page .f-gallery figcaption { font-size: .95rem; padding: .6rem .8rem; color: #444; }

@media (max-width: 1240px){ .feet-page .f-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px){ .feet-page .f-gallery-grid { grid-template-columns: 1fr; } }

/* CTA section */
.feet-page .f-cta { background: linear-gradient(180deg, #fff, #f5f7fb); padding: 2.2rem 1rem; text-align: center; border-radius: 12px; }
.feet-page .f-cta .btn.btn-primary { display:inline-block; background: var(--accent); color: var(--light); padding: .7rem 1.15rem; border-radius: 10px; text-decoration: none; box-shadow: 0 6px 16px rgba(13,110,253,.25); }
.feet-page .f-cta .btn.btn-primary:hover { opacity: .95; }

/* Section padding on small screens */
@media (max-width: 980px){ .feet-page .f-section { padding: 0 8px; } }

/* Feet page FAQs */
.feet-page .f-faq details { background:#fff; border:1px solid #eee; border-radius: 10px; margin: .6rem 0; box-shadow: 0 6px 18px rgba(0,0,0,.04); }
.feet-page .f-faq summary { cursor: pointer; list-style: none; padding: .75rem 1rem; font-weight: 700; color:#222; display:flex; align-items:center; gap:.6rem; }
.feet-page .f-faq summary::marker { content: ''; }
.feet-page .f-faq summary .arrow { margin-left:auto; width: 10px; height: 10px; border: 2px solid #999; border-left: 0; border-top: 0; transform: rotate(-45deg); transition: transform .2s ease; border-radius:2px; }
.feet-page .f-faq details[open] summary .arrow { transform: rotate(135deg); }
.feet-page .f-faq details > div { padding: .5rem 1rem 1rem; color:#444; }

/* Bisexual page (scoped styles) */
.bi-page { font-size: 1rem; line-height: 1.75; color: #222; }
.bi-page .bi-section { margin: 2.4rem auto; max-width: 980px; }
.bi-page h2 { font-size: 1.8rem; margin: 0 0 1rem; color:#111; }
.bi-page h3 { font-size: 1.15rem; margin: 1.25rem 0 .6rem; color:#333; }
.bi-page p { margin: .8rem 0; }

/* Hero */
.bi-hero.hero--banner { background: url('images/bisexualchat.jpg') center/cover no-repeat; color:#fff; }
.bi-hero .hero__inner { min-height: 420px; }
.bi-hero .hero__content h1 { font-size: 2.2rem; margin-bottom: .6rem; }
.bi-hero .cta { display:inline-block; padding:.6rem 1rem; border-radius:8px; background:#ff3b3b; color:#fff; text-decoration:none; }
.bi-hero .cta--accent { background:#23272a; }

/* Lists */
.bi-page .bi-list { padding-left:1.25rem; }
.bi-page .bi-list li { margin:.45rem 0; }
.bi-page .bi-list--donts li::marker { color:#e82e2e; }
.bi-page .bi-checklist { list-style:none; padding-left:0; }
.bi-page .bi-checklist li { position:relative; padding-left:1.6rem; margin:.5rem 0; }
.bi-page .bi-checklist li::before { content:"✔"; position:absolute; left:0; color:#12b886; }

/* Steps */
.bi-page .bi-steps { counter-reset:step; list-style:none; padding-left:0; }
.bi-page .bi-steps li { counter-increment:step; position:relative; padding-left:2.2rem; margin:.55rem 0; }
.bi-page .bi-steps li::before { content:counter(step) "."; position:absolute; left:0; background:#23272a; color:#fff; border-radius:50%; width:1.6rem; height:1.6rem; display:inline-flex; align-items:center; justify-content:center; font-size:.9rem; }

/* Note */
.bi-page .bi-note { background:#f7f7f9; border-left:4px solid #12b886; padding:.8rem 1rem; border-radius:8px; margin:1rem 0; color:#333; }

/* Browse grid */
.bi-page .bi-browse-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:.9rem; }
.bi-page .bi-browse-grid figure { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 1px 6px rgba(0,0,0,.08); }
.bi-page .bi-browse-grid img { width:100%; height:100%; object-fit:cover; display:block; }
.bi-page .bi-browse-grid figcaption { font-size:.95rem; padding:.6rem .8rem; color:#444; }

/* FAQ */
.bi-page .bi-faq details { background:#fff; border:1px solid #eee; border-radius:10px; margin:.6rem 0; box-shadow:0 6px 18px rgba(0,0,0,.04); }
.bi-page .bi-faq summary { cursor:pointer; list-style:none; padding:.75rem 1rem; font-weight:700; color:#222; display:flex; align-items:center; gap:.6rem; }
.bi-page .bi-faq summary::marker { content:''; }
.bi-page .bi-faq summary .arrow { margin-left:auto; width:10px; height:10px; border:2px solid #999; border-left:0; border-top:0; transform: rotate(-45deg); transition: transform .2s ease; border-radius:2px; }
.bi-page .bi-faq details[open] summary .arrow { transform: rotate(135deg); }
.bi-page .bi-faq details > div { padding:.5rem 1rem 1rem; color:#444; }

/* CTA */
.bi-page .bi-cta { background: linear-gradient(180deg, #fff, #f5f7fb); padding: 2.2rem 1rem; text-align:center; border-radius:12px; }
.bi-page .bi-cta .btn.btn-primary { display:inline-block; background: var(--accent); color: var(--light); padding: .7rem 1.15rem; border-radius:10px; text-decoration:none; box-shadow:0 6px 16px rgba(13,110,253,.25); }
.bi-page .bi-cta .btn.btn-primary:hover { opacity:.95; }

/* Profiles grid - removed old bi-profiles-grid styles to use standard profiles-grid */

/* Responsive */
@media (max-width:980px){ .bi-page .bi-section { padding: 0 8px; } .bi-page .bi-browse-grid { grid-template-columns: 1fr; } }
@media (max-width:560px){ .bi-hero .hero__content h1 { font-size:1.9rem; } }

/* =====================
   Couples Chat Page (scoped styles)
   ===================== */
.couples-page {
  --cp-bg: #ffffff;
  --cp-text: #1c1c1e;
  --cp-accent: #2f6df6;
  --cp-muted: #5b5b62;
}
.couples-page .container { max-width: 1100px; }

.couples-hero { position: relative; color: #fff; background: linear-gradient( to bottom, rgba(16,18,27,0.35), rgba(16,18,27,0.6) ), url('images/coupleschat.jpg') center/cover no-repeat; padding: 80px 0; border-radius: 14px; overflow: hidden; }
.couples-hero .hero__inner { display: flex; align-items: center; justify-content: center; min-height: 220px; }
.couples-hero .hero__content { text-align: center; max-width: 780px; }
.couples-hero h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 10px; }
.couples-hero p { font-size: 1rem; line-height: 1.7; opacity: 0.95; }
.couples-hero .btns { margin-top: 18px; display: flex; gap: 12px; justify-content: center; }
.couples-hero .cta { background: #2f6df6; color:#fff; padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.couples-hero .cta.cta--ghost { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.55); }

.couples-section { padding: 28px 0; }
.couples-section h2 { font-size: 1.6rem; margin: 4px 0 12px; color: var(--cp-text); }
.couples-section p { color: var(--cp-muted); line-height: 1.8; }

.couples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.couples-card { background: #fff; border-radius: 12px; box-shadow: 0 6px 18px rgba(20,23,40,0.08); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.couples-card__content { padding: 14px 14px 16px; }
.couples-card h3 { font-size: 1.05rem; margin: 4px 0 6px; color: var(--cp-text); }
.couples-card p { font-size: 0.95rem; color: var(--cp-muted); }

.couples-list { display: grid; gap: 10px; padding-left: 18px; }
.couples-list li { line-height: 1.8; color: var(--cp-text); }
.couples-list li strong { color: var(--cp-text); }

.couples-callout { background: #f7f9ff; border: 1px solid #e7edff; border-radius: 12px; padding: 14px; color: #2b3a66; }

.couples-final { text-align: center; padding: 36px 0 48px; }
.couples-final .cta { background: var(--cp-accent); color: #fff; padding: 12px 18px; border-radius: 10px; text-decoration: none; }
.couples-final p { margin-top: 10px; color: var(--cp-muted); }

@media (max-width: 768px) {
  .couples-hero { padding: 54px 0; border-radius: 12px; }
  .couples-hero h1 { font-size: 1.6rem; }
  .couples-hero p { font-size: 0.95rem; }
}

/* =====================
   LGBT Chat Page (scoped styles)
   ===================== */
.lgbt-page { --lg-bg:#fff; --lg-text:#1a1a1a; --lg-muted:#5b5b62; --lg-accent:#7c3aed; }
.lgbt-page .container { max-width: 1100px; }

.lgbt-hero { position:relative; color:#fff; background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/lgbtchat.jpg') center/cover no-repeat; padding:80px 0; border-radius:14px; overflow:hidden; }
.lgbt-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.lgbt-hero .hero__content { text-align:center; max-width:800px; }
.lgbt-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.lgbt-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.lgbt-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.lgbt-hero .cta { background: var(--lg-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.lgbt-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.lgbt-section { padding:28px 0; }
.lgbt-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--lg-text); }
.lgbt-section p { color:var(--lg-muted); line-height:1.8; }

.lgbt-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.lgbt-card { background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.08); overflow:hidden; border:1px solid rgba(0,0,0,.06); }
.lgbt-card__content { padding:14px 14px 16px; }
.lgbt-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--lg-text); }
.lgbt-card p { font-size:.96rem; color:var(--lg-muted); }

.lgbt-list { display:grid; gap:10px; padding-left:18px; }
.lgbt-list li { line-height:1.8; color:var(--lg-text); }
.lgbt-callout { background:#f7f9ff; border:1px solid #e7edff; border-radius:12px; padding:14px; color:#2b3a66; }


.lgbt-final { text-align:center; padding:36px 0 48px; }
.lgbt-final .cta { background: var(--lg-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.lgbt-final p { margin-top:10px; color:var(--lg-muted); }

@media (max-width: 768px){ .lgbt-hero { padding:54px 0; border-radius:12px; } .lgbt-hero h1 { font-size:1.6rem; } .lgbt-hero p { font-size:.95rem; } }

/* =====================
   Threesome Chat Page (scoped styles)
   ===================== */
.threesome-page { --ts-bg:#fff; --ts-text:#141414; --ts-muted:#5a5f6b; --ts-accent:#0d6efd; }
.threesome-page .container { max-width: 1100px; }

.threesome-hero { position:relative; color:#fff; background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/indianthreesome.jpg') center/cover no-repeat; padding:80px 0; border-radius:14px; overflow:hidden; }
.threesome-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.threesome-hero .hero__content { text-align:center; max-width:800px; }
.threesome-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.threesome-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.threesome-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.threesome-hero .cta { background: var(--ts-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.threesome-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.threesome-section { padding:28px 0; }
.threesome-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--ts-text); }
.threesome-section p { color:var(--ts-muted); line-height:1.8; }

.threesome-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.threesome-card { background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.08); overflow:hidden; border:1px solid rgba(0,0,0,.06); }
.threesome-card__content { padding:14px 14px 16px; }
.threesome-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--ts-text); }
.threesome-card p { font-size:.96rem; color:var(--ts-muted); }

.threesome-list { display:grid; gap:10px; padding-left:18px; }
.threesome-list li { line-height:1.8; color:var(--ts-text); }

.threesome-faq details { border:1px solid rgba(0,0,0,.06); border-radius:12px; background:#fff; margin-bottom:10px; }
.threesome-faq summary { cursor:pointer; padding:12px 14px; font-weight:600; color:var(--ts-text); }
.threesome-faq div { padding:0 14px 14px; color:var(--ts-muted); }

.threesome-callout { background:#f7f9ff; border:1px solid #e7edff; border-radius:12px; padding:14px; color:#2b3a66; }

.threesome-final { text-align:center; padding:36px 0 48px; }
.threesome-final .cta { background: var(--ts-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.threesome-final p { margin-top:10px; color:var(--ts-muted); }

@media (max-width: 768px){ .threesome-hero { padding:54px 0; border-radius:12px; } .threesome-hero h1 { font-size:1.6rem; } .threesome-hero p { font-size:.95rem; } }

/* =====================
   Unicorn Chat Page (scoped styles)
   ===================== */
.unicorn-page { --uni-bg:#fff; --uni-text:#141414; --uni-muted:#5a5f6b; --uni-accent:#ff8cc8; }
.unicorn-page .container { max-width: 1100px; }

.unicorn-hero { position:relative; color:#fff; background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/indianunicorn.jpg') center/cover no-repeat; padding:80px 0; border-radius:14px; overflow:hidden; }
.unicorn-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.unicorn-hero .hero__content { text-align:center; max-width:800px; }
.unicorn-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.unicorn-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.unicorn-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.unicorn-hero .cta { background: var(--uni-accent); color:#1a1a1a; padding:10px 16px; border-radius:8px; text-decoration:none; }
.unicorn-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); color:#fff; }

.unicorn-section { padding:28px 0; }
.unicorn-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--uni-text); }
.unicorn-section p { color:var(--uni-muted); line-height:1.8; }

.unicorn-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.unicorn-card { background:#fff; border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.08); overflow:hidden; border:1px solid rgba(0,0,0,.06); }
.unicorn-card__content { padding:14px 14px 16px; }
.unicorn-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--uni-text); }
.unicorn-card p { font-size:.96rem; color:var(--uni-muted); }

.unicorn-list { display:grid; gap:10px; padding-left:18px; }
.unicorn-list li { line-height:1.8; color:var(--uni-text); }

.unicorn-faq details { border:1px solid rgba(0,0,0,.06); border-radius:12px; background:#fff; margin-bottom:10px; }
.unicorn-faq summary { cursor:pointer; padding:12px 14px; font-weight:600; color:var(--uni-text); }
.unicorn-faq div { padding:0 14px 14px; color:var(--uni-muted); }

.unicorn-final { text-align:center; padding:36px 0 48px; }
.unicorn-final .cta { background: var(--uni-accent); color:#1a1a1a; padding:12px 18px; border-radius:10px; text-decoration:none; }
.unicorn-final p { margin-top:10px; color:var(--uni-muted); }

@media (max-width: 768px){ .unicorn-hero { padding:54px 0; border-radius:12px; } .unicorn-hero h1 { font-size:1.6rem; } .unicorn-hero p { font-size:.95rem; } }

/* =====================
   City Chat Pages (scoped styles)
   ===================== */
.mumbai-page, .delhi-page {
  /* Light theme to match site (white background) */
  --city-accent: #0d6efd; /* unify accent with site primary */
  --city-bg: #ffffff;     /* main background white */
  --city-card: #ffffff;   /* card background white */
  --city-border: rgba(0,0,0,.08); /* subtle borders */
  --city-text: #141414;   /* primary text dark */
  --city-muted: #5a5f6b;  /* secondary text */
}
.mumbai-page .container, .delhi-page .container { max-width: 1100px; }
.mumbai-page .city-hero, .delhi-page .city-hero {
  position:relative; color:#fff;
  background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/INDIANCHAT.jpg') center/cover no-repeat;
  padding:80px 0; border-radius:14px; overflow:hidden;
}
.mumbai-page .city-hero .hero__inner, .delhi-page .city-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.mumbai-page .city-hero .hero__content, .delhi-page .city-hero .hero__content { text-align:center; max-width:800px; }
.mumbai-page .city-hero h1, .delhi-page .city-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.mumbai-page .city-hero p, .delhi-page .city-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.mumbai-page .city-hero .btns, .delhi-page .city-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.mumbai-page .city-hero .cta, .delhi-page .city-hero .cta { background: var(--city-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.mumbai-page .city-hero .cta.cta--ghost, .delhi-page .city-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.mumbai-page .city-section, .delhi-page .city-section { padding:28px 0; }
.mumbai-page .city-section h2, .delhi-page .city-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--city-text); }
.mumbai-page .city-section p, .delhi-page .city-section p { color:var(--city-muted); line-height:1.8; }

.mumbai-page .city-grid, .delhi-page .city-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.mumbai-page .city-card, .delhi-page .city-card { background:var(--city-card); border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.18); overflow:hidden; border:1px solid var(--city-border); }
.mumbai-page .city-card__content, .delhi-page .city-card__content { padding:14px 14px 16px; }
.mumbai-page .city-card h3, .delhi-page .city-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--city-text); }
.mumbai-page .city-card p, .delhi-page .city-card p { font-size:.96rem; color:var(--city-muted); }

.mumbai-page .city-list, .delhi-page .city-list { display:grid; gap:10px; padding-left:18px; }
.mumbai-page .city-list li, .delhi-page .city-list li { line-height:1.8; color:var(--city-text); }

.mumbai-page .city-final, .delhi-page .city-final { text-align:center; padding:36px 0 48px; }
.mumbai-page .city-final .cta, .delhi-page .city-final .cta { background: var(--city-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.mumbai-page .city-final p, .delhi-page .city-final p { margin-top:10px; color:var(--city-muted); }

@media (max-width: 768px){ .mumbai-page .city-hero, .delhi-page .city-hero { padding:54px 0; border-radius:12px; } .mumbai-page .city-hero h1, .delhi-page .city-hero h1 { font-size:1.6rem; } .mumbai-page .city-hero p, .delhi-page .city-hero p { font-size:.95rem; } }

/* City pages: contrast & readability overrides */
.mumbai-page body, .delhi-page body { background: var(--city-bg); color: var(--city-text); }
.mumbai-page .city-section h2, .delhi-page .city-section h2 { color: var(--city-text); }
.mumbai-page .city-section p, .delhi-page .city-section p { color: var(--city-text); }
.mumbai-page .city-list li, .delhi-page .city-list li { color: var(--city-text); }
.mumbai-page .city-card p, .delhi-page .city-card p { color: var(--city-text); }
.mumbai-page .city-final p, .delhi-page .city-final p { color: var(--city-text); }
.mumbai-page a, .delhi-page a { color: var(--city-accent); }
/* Override: keep footer links white on city pages */
.mumbai-page footer .footer__col a,
.mumbai-page footer a,
.delhi-page footer .footer__col a,
.delhi-page footer a { color: #fff; }
.mumbai-page footer .footer__col a:hover,
.delhi-page footer .footer__col a:hover { color:#fff; text-decoration: underline; }

/* Delhi page: 3-column layout for Browse section on desktop */
.delhi-page #delhi-browse .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .delhi-page #delhi-browse .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .delhi-page #delhi-browse .city-grid { grid-template-columns: 1fr; }
}

/* =====================
   Bangalore Chat Page (scoped styles)
   ===================== */
.bangalore-page {
  /* Match site light theme, scoped to Bangalore page only */
  --city-accent: #0d6efd;
  --city-bg: #ffffff;
  --city-card: #ffffff;
  --city-border: rgba(0,0,0,.08);
  --city-text: #141414;
  --city-muted: #5a5f6b;
}
.bangalore-page .container { max-width: 1100px; }
.bangalore-page .city-hero {
  position:relative; color:#fff;
  background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/bangalore-696x279.jpg') center/cover no-repeat;
  padding:80px 0; border-radius:14px; overflow:hidden;
}
.bangalore-page .city-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.bangalore-page .city-hero .hero__content { text-align:center; max-width:800px; }
.bangalore-page .city-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.bangalore-page .city-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.bangalore-page .city-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.bangalore-page .city-hero .cta { background: var(--city-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.bangalore-page .city-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.bangalore-page .city-section { padding:28px 0; }
.bangalore-page .city-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--city-text); }
.bangalore-page .city-section p { color:var(--city-muted); line-height:1.8; }

.bangalore-page .city-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.bangalore-page .city-card { background:var(--city-card); border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.18); overflow:hidden; border:1px solid var(--city-border); }
.bangalore-page .city-card__content { padding:14px 14px 16px; }
.bangalore-page .city-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--city-text); }
.bangalore-page .city-card p { font-size:.96rem; color:var(--city-muted); }

.bangalore-page .city-list { display:grid; gap:10px; padding-left:18px; }
.bangalore-page .city-list li { line-height:1.8; color:var(--city-text); }

.bangalore-page .city-final { text-align:center; padding:36px 0 48px; }
.bangalore-page .city-final .cta { background: var(--city-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.bangalore-page .city-final p { margin-top:10px; color:var(--city-muted); }

@media (max-width: 768px){ .bangalore-page .city-hero { padding:54px 0; border-radius:12px; } .bangalore-page .city-hero h1 { font-size:1.6rem; } .bangalore-page .city-hero p { font-size:.95rem; } }

/* Bangalore page: contrast & readability overrides */
.bangalore-page body { background: var(--city-bg); color: var(--city-text); }
.bangalore-page .city-section h2 { color: var(--city-text); }
.bangalore-page .city-section p { color: var(--city-text); }
.bangalore-page .city-list li { color: var(--city-text); }
.bangalore-page .city-card p { color: var(--city-text); }
.bangalore-page .city-final p { color: var(--city-text); }
.bangalore-page a { color: var(--city-accent); }
/* Override: keep footer links white on Bangalore page */
.bangalore-page footer .footer__col a,
.bangalore-page footer a { color: #fff; }
.bangalore-page footer .footer__col a:hover { color:#fff; text-decoration: underline; }

/* Bangalore page: 3-column grid for Browse section */
.bangalore-page #bangalore-browse .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) {
  .bangalore-page #bangalore-browse .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .bangalore-page #bangalore-browse .city-grid { grid-template-columns: 1fr; }
}

/* =====================
   Chennai Chat Page (scoped styles)
   ===================== */
.chennai-page {
  /* Match site light theme, scoped to Chennai page only */
  --city-accent: #0d6efd;
  --city-bg: #ffffff;
  --city-card: #ffffff;
  --city-border: rgba(0,0,0,.08);
  --city-text: #141414;
  --city-muted: #5a5f6b;
}
.chennai-page .container { max-width: 1100px; }
.chennai-page .city-hero {
  position:relative; color:#fff;
  background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/chennai-696x279.jpg') center/cover no-repeat;
  padding:80px 0; border-radius:14px; overflow:hidden;
}
.chennai-page .city-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.chennai-page .city-hero .hero__content { text-align:center; max-width:800px; }
.chennai-page .city-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; }
.chennai-page .city-hero p { font-size:1rem; line-height:1.7; opacity:.95; }
.chennai-page .city-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.chennai-page .city-hero .cta { background: var(--city-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.chennai-page .city-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.chennai-page .city-section { padding:28px 0; }
.chennai-page .city-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--city-text); }
.chennai-page .city-section p { color:var(--city-muted); line-height:1.8; }

.chennai-page .city-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.chennai-page .city-card { background:var(--city-card); border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.18); overflow:hidden; border:1px solid var(--city-border); }
.chennai-page .city-card img { width:100%; aspect-ratio: 16/9; object-fit: cover; }
.chennai-page .city-card__content { padding:14px 14px 16px; }
.chennai-page .city-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--city-text); }
.chennai-page .city-card p { font-size:.96rem; color:var(--city-muted); }

.chennai-page .city-list { display:grid; gap:10px; padding-left:18px; }
.chennai-page .city-list li { line-height:1.8; color:var(--city-text); }

.chennai-page .city-final { text-align:center; padding:36px 0 48px; }
.chennai-page .city-final .cta { background: var(--city-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.chennai-page .city-final p { margin-top:10px; color:var(--city-muted); }

@media (max-width: 768px){ .chennai-page .city-hero { padding:54px 0; border-radius:12px; } .chennai-page .city-hero h1 { font-size:1.6rem; } .chennai-page .city-hero p { font-size:.95rem; } }

/* Chennai page: contrast & readability overrides */
.chennai-page body { background: var(--city-bg); color: var(--city-text); }
.chennai-page .city-section h2 { color: var(--city-text); }
.chennai-page .city-section p { color: var(--city-text); }
.chennai-page .city-list li { color: var(--city-text); }
.chennai-page .city-card p { color: var(--city-text); }
.chennai-page .city-final p { color: var(--city-text); }
.chennai-page a { color: var(--city-accent); }
/* Override: keep footer links white on Chennai page */
.chennai-page footer .footer__col a,
.chennai-page footer a { color: #fff; }
.chennai-page footer .footer__col a:hover { color:#fff; text-decoration: underline; }

/* Chennai page: 3-column grid for Browse section */
.chennai-page #chennai-browse .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .chennai-page #chennai-browse .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .chennai-page #chennai-browse .city-grid { grid-template-columns: 1fr; } }

/* =====================
   Kolkata Chat Page (scoped styles)
   ===================== */
.kolkata-page {
  /* Match site light theme, scoped to Kolkata page only */
  --city-accent: #0d6efd;
  --city-bg: #ffffff;
  --city-card: #ffffff;
  --city-border: rgba(0,0,0,.08);
  --city-text: #141414;
  --city-muted: #5a5f6b;
}
.kolkata-page .container { max-width: 1100px; }
.kolkata-page .city-hero {
  position:relative; color:#fff;
  background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/kolkata10-657x421.jpg') center/cover no-repeat;
  padding:80px 0; border-radius:14px; overflow:hidden;
}
.kolkata-page .city-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.kolkata-page .city-hero .hero__content { text-align:center; max-width:800px; }
.kolkata-page .city-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; color:#fff; }
.kolkata-page .city-hero p { font-size:1rem; line-height:1.7; opacity:.95; color:#fff; }
.kolkata-page .city-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.kolkata-page .city-hero .cta { background: var(--city-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.kolkata-page .city-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.kolkata-page .city-section { padding:28px 0; }
.kolkata-page .city-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--city-text); }
.kolkata-page .city-section p { color:var(--city-muted); line-height:1.8; }

.kolkata-page .city-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.kolkata-page .city-card { background:var(--city-card); border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.18); overflow:hidden; border:1px solid var(--city-border); }
.kolkata-page .city-card img { width:100%; aspect-ratio: 16/9; object-fit: cover; }
.kolkata-page .city-card__content { padding:14px 14px 16px; }
.kolkata-page .city-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--city-text); }
.kolkata-page .city-card p { font-size:.96rem; color:var(--city-muted); }

.kolkata-page .city-list { display:grid; gap:10px; padding-left:18px; }
.kolkata-page .city-list li { line-height:1.8; color:var(--city-text); }

.kolkata-page .city-final { text-align:center; padding:36px 0 48px; }
.kolkata-page .city-final .cta { background: var(--city-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.kolkata-page .city-final p { margin-top:10px; color:var(--city-muted); }

@media (max-width: 768px){ .kolkata-page .city-hero { padding:54px 0; border-radius:12px; } .kolkata-page .city-hero h1 { font-size:1.6rem; } .kolkata-page .city-hero p { font-size:.95rem; } }

/* Kolkata page: contrast & readability overrides */
.kolkata-page body { background: var(--city-bg); color: var(--city-text); }
.kolkata-page .city-section h2 { color: var(--city-text); }
.kolkata-page .city-section p { color: var(--city-text); }
.kolkata-page .city-list li { color: var(--city-text); }
.kolkata-page .city-card p { color: var(--city-text); }
.kolkata-page .city-final p { color: var(--city-text); }
.kolkata-page a { color: var(--city-accent); }
/* Override: keep footer links white on Kolkata page */
.kolkata-page footer .footer__col a,
.kolkata-page footer a { color: #fff; }
.kolkata-page footer .footer__col a:hover { color:#fff; text-decoration: underline; }

/* Kolkata page: 3-column grid for Browse section */
.kolkata-page #kolkata-browse .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .kolkata-page #kolkata-browse .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .kolkata-page #kolkata-browse .city-grid { grid-template-columns: 1fr; } }

/* =====================
   Hyderabad Chat Page (scoped styles)
   ===================== */
.hyderabad-page {
  /* Match site light theme, scoped to Hyderabad page only */
  --city-accent: #0d6efd;
  --city-bg: #ffffff;
  --city-card: #ffffff;
  --city-border: rgba(0,0,0,.08);
  --city-text: #141414;
  --city-muted: #5a5f6b;
}
.hyderabad-page .container { max-width: 1100px; }
.hyderabad-page .city-hero {
  position:relative; color:#fff;
  background: linear-gradient( to bottom, rgba(16,18,27,.35), rgba(16,18,27,.6) ), url('images/hyderabad1118-649x390.jpg') center/cover no-repeat;
  padding:80px 0; border-radius:14px; overflow:hidden;
}
.hyderabad-page .city-hero .hero__inner { display:flex; align-items:center; justify-content:center; min-height:220px; }
.hyderabad-page .city-hero .hero__content { text-align:center; max-width:800px; }
.hyderabad-page .city-hero h1 { font-size:2rem; line-height:1.2; margin-bottom:10px; color:#fff; }
.hyderabad-page .city-hero p { font-size:1rem; line-height:1.7; opacity:.95; color:#fff; }
.hyderabad-page .city-hero .btns { margin-top:18px; display:flex; gap:12px; justify-content:center; }
.hyderabad-page .city-hero .cta { background: var(--city-accent); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; }
.hyderabad-page .city-hero .cta.cta--ghost { background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.55); }

.hyderabad-page .city-section { padding:28px 0; }
.hyderabad-page .city-section h2 { font-size:1.6rem; margin:4px 0 12px; color:var(--city-text); }
.hyderabad-page .city-section p { color:var(--city-muted); line-height:1.8; }

.hyderabad-page .city-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:16px; }
.hyderabad-page .city-card { background:var(--city-card); border-radius:12px; box-shadow:0 6px 18px rgba(20,23,40,.18); overflow:hidden; border:1px solid var(--city-border); }
.hyderabad-page .city-card img { width:100%; aspect-ratio: 16/9; object-fit: cover; }
.hyderabad-page .city-card__content { padding:14px 14px 16px; }
.hyderabad-page .city-card h3 { font-size:1.05rem; margin:4px 0 6px; color:var(--city-text); }
.hyderabad-page .city-card p { font-size:.96rem; color:var(--city-muted); }

.hyderabad-page .city-list { display:grid; gap:10px; padding-left:18px; }
.hyderabad-page .city-list li { line-height:1.8; color:var(--city-text); }

.hyderabad-page .city-final { text-align:center; padding:36px 0 48px; }
.hyderabad-page .city-final .cta { background: var(--city-accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; }
.hyderabad-page .city-final p { margin-top:10px; color:var(--city-muted); }

@media (max-width: 768px){ .hyderabad-page .city-hero { padding:54px 0; border-radius:12px; } .hyderabad-page .city-hero h1 { font-size:1.6rem; } .hyderabad-page .city-hero p { font-size:.95rem; } }

.hyderabad-page body { background: var(--city-bg); color: var(--city-text); }
.hyderabad-page a { color: var(--city-accent); }

.hyderabad-page footer .footer__col a,
.hyderabad-page footer a { color: #fff; }
.hyderabad-page footer .footer__col a:hover { color:#fff; text-decoration: underline; }

/* Hyderabad page: 3-column grid for Browse section */
.hyderabad-page #hyderabad-browse .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) { .hyderabad-page #hyderabad-browse .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .hyderabad-page #hyderabad-browse .city-grid { grid-template-columns: 1fr; } }
/* ----------------------------------------
   Scoped blog styles (do not affect other pages)
   Applies only to blogs list and detailed article pages
   ---------------------------------------- */

/* Blog list page */
.blogs-page {
  /* spacing handled by adjacent header rule below */
  padding-top: 0;
}
.blogs-page .hero__content h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.blogs-page .cards {
  gap: 1.25rem;
}
.blogs-page .card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.blogs-page .card .content h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
}

/* Detailed blog article pages */
.blog-article-page {
  /* spacing handled by adjacent header rule below */
  padding-top: 0;
}
.blog-article-page .article {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  /* Fallback offset independent of sibling selector to guarantee no overlap */
  margin-top: var(--header-offset-desktop);
}
.blog-article-page .article__header h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin: 0 0 0.5rem 0;
  word-break: break-word;
}
.blog-article-page .article__dek {
  color: #555;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  margin: 0 0 1rem 0;
}
.blog-article-page .article__header img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  margin: 16px 0 24px;
  position: relative;
  z-index: 0; /* ensure image never overlays title/dek */
}
.blog-article-page .article__header { position: relative; }
.blog-article-page .article__header h1,
.blog-article-page .article__dek { position: relative; z-index: 1; }

/* Blog article extras: Table of Contents, callouts, FAQ */
.blog-article-page .article__toc {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 0 0 1.25rem 0;
  box-shadow: 0 6px 20px rgba(17,24,39,0.06);
}
.blog-article-page .article__toc h2 {
  font-size: 0.95rem;
  margin: 0 0 0.6rem 0;
  color: #6b7280;
  letter-spacing: 0.02em;
}
.blog-article-page .article__toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.4rem 1rem;
}
.blog-article-page .article__toc li { margin: 0; }
.blog-article-page .article__toc a {
  display: inline-block;
  color: #0f766e;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
}
.blog-article-page .article__toc a:hover {
  background: #eaf6f4;
  text-decoration: none;
}

.blog-article-page .callout {
  border-left: 4px solid #0ea5e9;
  background: #f0f9ff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.blog-article-page .callout--warning {
  border-left-color: #f59e0b;
  background: #fffbeb;
}
.blog-article-page .callout--success {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.blog-article-page .faq { margin: 1.25rem 0; }
.blog-article-page .faq h3 { margin: 0.5rem 0; }
.blog-article-page .faq dl { margin: 0; }
.blog-article-page .faq dt {
  font-weight: 600;
  margin: 0.5rem 0 0.25rem 0;
}
.blog-article-page .faq dd {
  margin: 0 0 0.75rem 0;
  color: #374151;
}

@media (max-width: 768px) {
  .blog-article-page .article__toc ul {
    grid-template-columns: 1fr;
  }
}
.blog-article-page .article__pager {
  display: flex;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
  margin-top: 28px;
  padding-top: 16px;
}
.blog-article-page .article__pager a {
  flex: 1;
  display: block;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  color: #0f766e;
  text-decoration: none;
}
.blog-article-page .article__pager a:hover {
  background: #eef2f7;
  border-color: #d1d5db;
}
.blog-article-page .article__pager .pager__label {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 4px;
}
.blog-article-page .article__pager .pager__title {
  font-weight: 600;
  color: #111827;
}
.blog-article-page section {
  margin: 24px 0;
}
.blog-article-page h2 {
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  line-height: 1.25;
  margin: 0 0 0.5rem 0;
}
.blog-article-page p {
  font-size: 1rem;
  line-height: 1.75;
}
.blog-article-page ul,
.blog-article-page ol {
  margin: 0.5rem 0 1rem 1.25rem;
  line-height: 1.75;
}
.blog-article-page li { margin-bottom: 0.35rem; }

/* Robust offset: ensure content never sits under sticky header.
   Use adjacent sibling selector so it only affects pages that place
   main right after header (our blogs and article pages).
*/
header + main.blog-article-page,
header + .container.blog-article-page {
  margin-top: clamp(96px, 12vh, 140px);
}
header + main.blogs-page,
header + .container.blogs-page {
  margin-top: clamp(88px, 11vh, 128px);
}

@media (max-width: 768px) {
  .blog-article-page .article { padding: 0 0.75rem 2.5rem; margin-top: var(--header-offset-mobile); }
}
/* Scoped styles for BBW Chat page */
.bbw-hero {
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 60%);
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.bbw-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.bbw-hero__content h1 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 10px;
}
.bbw-hero__content p {
  color: #334155;
  margin-bottom: 16px;
}
.bbw-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.bbw-page#overview { /* ensure anchor jump accounts for sticky header */
  scroll-margin-top: var(--header-offset-mobile);
}

.bbw-page .article__header { /* prevent images from visually overlapping heading/dek */
  position: relative;
}
.bbw-page .article__header h2,
.bbw-page .article__dek { /* keep text above any decorative effects */
  position: relative;
  z-index: 1;
}
.bbw-page .article__header img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px; /* keep hero/article image from dominating the viewport */
  object-fit: cover;
  border-radius: 10px;
  margin: 12px auto 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.bbw-page .faq dt {
  font-weight: 600;
  margin-top: 12px;
}
.bbw-page .faq dd {
  margin: 6px 0 10px 0;
}
.final-cta {
  background: #f8fafc;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
}

/* Mobile adjustments for BBW page */
@media (max-width: 768px) {
  .bbw-hero__inner {
    grid-template-columns: 1fr;
  }
  .bbw-hero__content h1 {
    font-size: 24px;
  }
}
