/* SugarDaddy.in Styles - Unified, conflict-free CSS */
:root {
  --bg: #0b0c10;
  --panel: #121317;
  --gold: #d4af37;
  --gold-2: #e6c35f;
  --text: #f3f4f6;
  --muted: #b9bdc7;
  --accent: #ffcb74;
  --danger: #ff4d4f;
  --success: #2ecc71;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Inter", Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 35px; }
.section-header h2 { font-size: 2.2rem; margin: 0 0 8px; color: var(--gold); }
.section-header p { color: var(--muted); }
.btn {
  display: inline-block; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #141414;
  font-weight: 700; box-shadow: var(--shadow);
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); transition: 180ms ease; }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--gold); color: var(--gold); font-size: 12px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--panel); border: 1px solid #191b22; border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.card h3 { margin-top: 10px; color: var(--gold); }
.card p { color: var(--muted); }
/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(12, 13, 17, 0.85); backdrop-filter: blur(8px); border-bottom: 1px solid #1a1c23; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.2px; }
.brand img.logo { width: 28px; height: 28px; border-radius: 50%; }
.brand .name { color: var(--gold); font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a { color: var(--text); opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; background: transparent; border: 1px solid #2a2d36; color: var(--text); padding: 8px 12px; border-radius: 8px; }
/* Mobile Menu */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 58px 0 auto 0; background: rgba(12, 13, 17, 0.95); border-top: 1px solid #1a1c23; padding: 18px 20px; display: none; flex-direction: column; gap: 10px; }
  .header.nav-open .nav-links { display: flex; }
  .nav-cta { width: 100%; }
}
/* Hero */
.hero {
  background: linear-gradient(180deg, rgba(11,12,16,0.5), rgba(11,12,16,0.95)), url('images/richwomnindia-1545x858.jpg') center/cover no-repeat;
  padding: 120px 0 90px; text-align: center; border-bottom: 1px solid #1a1c23;
}
.hero h1 { font-size: 2.8rem; margin: 0 0 12px; }
.hero p { max-width: 900px; margin: 0 auto 22px; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
/* Feature icons */
.feature-icon { width: 52px; height: 52px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: #191b22; border: 1px solid #222430; }
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
/* Lists */
.list { list-style: none; padding: 0; margin: 0; }
.list li { padding: 6px 0; color: var(--muted); }
.list.check li::before { content: ' '; color: var(--success); }
/* Pricing */
.pricing { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.price-card { border: 1px solid #242633; border-radius: 14px; overflow: hidden; background: linear-gradient(180deg, #121317, #0f1013); }
.price-card .head { padding: 14px 18px; background: #1a1c23; border-bottom: 1px solid #242633; display: flex; align-items: center; gap: 12px; }
.price-card .head h3 { margin: 0; }
.price-card .body { padding: 18px; }
.price { font-size: 1.6rem; color: var(--gold); font-weight: 800; }
.small { font-size: 0.9rem; color: var(--muted); }
/* Members */
.members { grid-template-columns: repeat(3, 1fr); }
.member-card img { border-radius: 12px; }
.member-card h4 { margin: 10px 0 6px; color: var(--text); }
.member-card .meta { color: var(--muted); font-size: 0.92rem; }
/* Cities */
.city-grid { grid-template-columns: repeat(3, 1fr); }
.city-card { overflow: hidden; }
.city-card img { border-radius: 12px; }
.city-card h3 { margin: 10px 0 4px; }
/* FAQ */
.faq-item { border: 1px solid #222430; border-radius: 12px; padding: 14px 16px; background: #14161b; }
.faq-item h4 { margin: 0 0 8px; color: var(--gold); }
/* Blog */
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card h4 { margin: 10px 0 6px; }
.blog-card .meta { color: var(--muted); }
/* Footer */
.footer { border-top: 1px solid #1a1c23; background: #0e0f13; padding: 30px 0; color: var(--muted); }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--gold); }
/* Utilities */
.kicker { color: var(--gold); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.85rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
/* Responsive */
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4, .members, .city-grid, .blog-grid, .pricing { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  .hero h1 { font-size: 2.1rem; }
}
.hidden{display:none !important}
/* Image & CTA optimization */
/* Featured Members: square thumbnails for consistent grid */
.member-card img { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; }
/* Top Cities: widescreen crop for visual consistency */
.city-card img { aspect-ratio: 16 / 9; width: 100%; height: auto; object-fit: cover; }
/* Final CTA styling: centered, premium look */
#cta .container { max-width: 900px; }
#cta img { aspect-ratio: 16 / 9; width: 100%; height: auto; object-fit: cover; border-radius: 16px; border: 1px solid #242633; box-shadow: var(--shadow); }
#cta h2 { font-size: 2rem; color: var(--gold); letter-spacing: 0.3px; }
#cta p { color: var(--muted); max-width: 780px; margin: 10px auto 0; }
#cta .btn { padding: 14px 24px; font-size: 1rem; }
@media (max-width: 980px) {
  #cta h2 { font-size: 1.6rem; }
}
