/* TheRealConnect — Light Mumbai Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --bg: #faf8f5;
  --bg-white: #ffffff;
  --bg-warm: #f5f0e8;
  --bg-card: #ffffff;
  --bg-glass: rgba(255,255,255,0.85);
  --border: rgba(0,0,0,0.08);
  --border-warm: rgba(180,140,80,0.15);
  --text: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-muted: #9a9ab0;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-dark: #1d4ed8;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gold: #d97706;
  --gold-light: #f59e0b;
  --coral: #e11d48;
  --green: #059669;
  --orange: #ea580c;
  --purple: #7c3aed;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-brand-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
}
.nav-brand-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.nav-brand-text span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; text-decoration: none; transition: var(--transition);
  border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,0.3); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #fdf4e8 50%, #fce7e7 100%);
}
.hero-bg {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: url('/static/img/mumbai_hero.png') center bottom / cover no-repeat;
  opacity: 0.25;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-white); border: 1px solid var(--border);
  font-size: 13px; color: var(--teal); font-weight: 600;
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 800;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
  color: var(--text);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--teal), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 17px; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; text-decoration: none; transition: var(--transition);
  border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(13,148,136,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,148,136,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: var(--bg-white); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; transition: var(--transition);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* Hero Visual - Search Card */
.hero-visual { position: relative; }
.hero-card {
  width: 100%; max-width: 420px; border-radius: var(--radius);
  background: var(--bg-white); border: 1px solid var(--border);
  padding: 24px; box-shadow: var(--shadow-lg);
  animation: slideUp 0.8s ease-out;
}
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-card-title { font-size: 14px; font-weight: 700; color: var(--text); }
.hero-card-badge {
  padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
  background: rgba(5,150,105,0.1); color: var(--green);
}
.search-preview {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px; color: var(--text-secondary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.search-preview .icon { color: var(--teal); font-size: 16px; }
.cp-preview-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); margin-bottom: 8px; transition: var(--transition);
  background: var(--bg-white);
}
.cp-preview-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.cp-avatar {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.cp-avatar.p1 { background: rgba(5,150,105,0.1); color: var(--green); }
.cp-avatar.p2 { background: rgba(245,158,11,0.1); color: var(--gold); }
.cp-avatar.p3 { background: rgba(37,99,235,0.1); color: var(--accent); }
.cp-info { flex: 1; }
.cp-name { font-size: 14px; font-weight: 600; color: var(--text); }
.cp-meta { font-size: 11px; color: var(--text-muted); }
.cp-tag { padding: 3px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.3px; }
.cp-tag.p1 { background: rgba(5,150,105,0.1); color: var(--green); }
.cp-tag.p2 { background: rgba(245,158,11,0.1); color: var(--gold); }

/* ===================== STATS ===================== */
.stats { padding: 60px 24px; background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 800;
  color: var(--text);
}
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ===================== IMAGE SECTION ===================== */
.image-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f0f9f4, #eef2ff);
}
.image-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.image-section-inner.reverse { direction: rtl; }
.image-section-inner.reverse > * { direction: ltr; }
.section-img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 4px solid var(--bg-white);
}
.section-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

/* ===================== FEATURES ===================== */
.features { padding: 80px 24px; background: var(--bg-white); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.15);
  font-size: 12px; color: var(--teal); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 800;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 550px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  padding: 28px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feature-icon.search { background: rgba(37,99,235,0.08); }
.feature-icon.whatsapp { background: rgba(5,150,105,0.08); }
.feature-icon.analytics { background: rgba(217,119,6,0.08); }
.feature-icon.priority { background: rgba(225,29,72,0.08); }
.feature-icon.media { background: rgba(124,58,237,0.08); }
.feature-icon.billing { background: rgba(13,148,136,0.08); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 80px 24px; background: linear-gradient(135deg, #fdf4e8, #f0f7ff); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.step-card {
  text-align: center; padding: 28px 20px; border-radius: var(--radius);
  background: var(--bg-white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-illustration {
  width: 100px; height: 100px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,148,136,0.05), rgba(37,99,235,0.05));
  border-radius: 20px; padding: 8px;
  transition: var(--transition);
}
.step-card:hover .step-illustration {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(37,99,235,0.1));
}
.step-illustration svg { width: 100%; height: 100%; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff;
}
.step-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-secondary); }

/* ===================== PRICING ===================== */
.pricing { padding: 80px 24px; background: var(--bg-white); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.price-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.price-card.featured {
  border-color: var(--teal); background: linear-gradient(135deg, rgba(13,148,136,0.04), rgba(37,99,235,0.04));
  box-shadow: var(--shadow);
}
.price-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-name { font-size: 13px; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; margin: 12px 0 4px; color: var(--text); }
.price-amount span { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-muted); font-weight: 400; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li {
  padding: 8px 0; font-size: 14px; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 16px; }
.price-btn {
  display: block; width: 100%; padding: 13px; border-radius: 10px;
  text-align: center; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}
.price-btn.primary { background: linear-gradient(135deg, var(--teal), var(--accent)); color: #fff; }
.price-btn.secondary { background: var(--bg-white); border: 1px solid var(--border); color: var(--text); }
.price-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ===================== CTA ===================== */
.cta {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; position: relative; overflow: hidden;
}
.cta::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: url('/static/img/mumbai_hero.png') center bottom / cover no-repeat;
  opacity: 0.1;
}
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.cta p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; position: relative; z-index: 1; }
.cta .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 12px; font-size: 16px; font-weight: 700;
  background: #fff; color: var(--teal); text-decoration: none;
  transition: var(--transition); border: none; cursor: pointer;
  position: relative; z-index: 1;
}
.cta .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===================== FOOTER ===================== */
.footer { padding: 40px 24px; background: var(--bg-white); border-top: 1px solid var(--border); text-align: center; }
.footer p { font-size: 13px; color: var(--text-muted); }
.footer a { color: var(--text-muted); text-decoration: none; }
.footer a:hover { color: var(--teal); }

/* ===================== LOGIN ===================== */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative;
  background: linear-gradient(135deg, #f0f7ff 0%, #fdf4e8 50%, #fce7e7 100%);
}
.login-bg {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: url('/static/img/mumbai_hero.png') center bottom / cover no-repeat;
  opacity: 0.15;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.login-card {
  width: 100%; max-width: 420px; padding: 40px;
  border-radius: var(--radius); background: var(--bg-white);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.login-header { text-align: center; margin-bottom: 28px; }
.login-header h1 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.login-header p { font-size: 14px; color: var(--text-secondary); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
.form-input::placeholder { color: var(--text-muted); }
.form-check { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.form-check label { font-size: 13px; color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.form-check a { font-size: 13px; color: var(--teal); text-decoration: none; font-weight: 500; }
.login-btn {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--accent));
  color: #fff; font-size: 15px; font-weight: 600; border: none;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.login-btn:hover { box-shadow: 0 6px 20px rgba(13,148,136,0.3); transform: translateY(-1px); }
.login-footer { text-align: center; margin-top: 20px; }
.login-footer a { font-size: 13px; color: var(--teal); text-decoration: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 968px) {
  .hero-inner, .image-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .image-section-inner.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 16px 50px; }
}
