/* ============================================================
   One Night Stand India — Complete Design System
   ============================================================
   Colors, typography, layouts, components, pages, responsive
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Primary Colors */
  --primary-pink: #F53573;
  --hot-pink: #FF3E7B;
  --coral: #FF6B7F;

  /* Backgrounds */
  --white: #FFFFFF;
  --soft-blush: #FFF5F7;
  --warm-peach: #FFF1EC;
  --cream: #FFF9F5;

  /* Dark Accents */
  --burgundy: #611535;
  --deep-plum: #3B1025;
  --charcoal: #171417;

  /* Text */
  --text-primary: #171417;
  --text-secondary: #6F676D;
  --border-color: #F0DFE5;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 24px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================================
   4. Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 100px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.bg-soft-blush { background: var(--soft-blush); }
.bg-warm-peach { background: var(--warm-peach); }
.bg-cream { background: var(--cream); }
.bg-burgundy { background: var(--burgundy); color: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-white { background: var(--white); }

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--hot-pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,53,115,0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-pink);
  border: 1.5px solid var(--primary-pink);
}
.btn-secondary:hover {
  background: var(--soft-blush);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-pink);
}
.btn-white:hover {
  background: var(--soft-blush);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================================
   6. Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition-normal);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover {
  opacity: 0.85;
}
.logo-emoji {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
}
.logo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--primary-pink);
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  vertical-align: middle;
  margin-left: 2px;
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-pink);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width var(--transition-normal);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 32px var(--container-padding);
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero {
  padding: 140px 0 100px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--soft-blush) 0%, var(--warm-peach) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content .hero-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-trust .trust-avatars {
  display: flex;
}
.hero-trust .trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--white);
  margin-right: -8px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  max-height: 550px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 550px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f8d0dc 0%, #f5c0c8 50%, #e8c4b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}

/* Hero — City Page Variant (split layout, tighter padding) */
.hero-city {
  padding: 120px 0 80px;
}

.hero-city .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-city h1 {
  margin-bottom: 16px;
}

.hero-city .hero-city-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Hero — Page Variant (about, faq, contact, guides) */
.hero-page {
  padding: 120px 0 60px;
  text-align: center;
}

.hero-page h1 {
  margin-bottom: 12px;
}

.hero-page p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   8. Trust Feature Cards
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--soft-blush);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.trust-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   9. City Cards
   ============================================================ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  aspect-ratio: 4/3;
}
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.city-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8d0d8, #d8c8d0);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,20,23,0.8) 0%, rgba(23,20,23,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.city-card-overlay h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 4px;
}

.city-card-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

/* ============================================================
   10. Profile Cards
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.profile-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-card-image.member-photo {
  filter: blur(5px);
  transform: scale(1.04);
}

.profile-card-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #f0d8e0 0%, #e8d0d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 48px;
}

.profile-card-body {
  padding: 20px;
}

.profile-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.profile-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}

.profile-card-age {
  color: var(--text-secondary);
  font-weight: 500;
}

.profile-card-city {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-card-bio {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.profile-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--soft-blush);
  color: var(--primary-pink);
  font-weight: 500;
}

.profile-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.profile-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #22c55e;
}
.profile-online-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #22c55e;
}

.profile-like-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.profile-like-btn:hover {
  background: var(--primary-pink);
  color: var(--white);
  border-color: var(--primary-pink);
}

/* Profile Carousel (Mobile) */
.profile-carousel {
  display: none;
}

/* ============================================================
   11. How It Works — Timeline
   ============================================================ */
.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--primary-pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   12. Lifestyle Section
   ============================================================ */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 450px;
}

.lifestyle-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lifestyle-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
}

.lifestyle-img:nth-child(1) .lifestyle-img-placeholder { background: #f5d8d0; }
.lifestyle-img:nth-child(2) .lifestyle-img-placeholder { background: #e0d8e8; }
.lifestyle-img:nth-child(3) .lifestyle-img-placeholder { background: #d8e8e0; }
.lifestyle-img:nth-child(4) .lifestyle-img-placeholder { background: #f0e0d0; }

.lifestyle-img:nth-child(1) { grid-row: span 2; }

.lifestyle-image-single,
.lifestyle-image-square {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.lifestyle-image-single {
  aspect-ratio: 4 / 3;
}

.lifestyle-image-square {
  aspect-ratio: 1 / 1;
}

.lifestyle-image-single img,
.lifestyle-image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lifestyle-content h2 { margin-bottom: 16px; }
.lifestyle-content .lifestyle-text { color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.lifestyle-features { list-style: none; margin-bottom: 24px; }
.lifestyle-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
}
.lifestyle-features li::before {
  content: '✓';
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 18px;
}

/* ============================================================
   13. Dating Experience Cards
   ============================================================ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.experience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.experience-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.experience-card-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
}

.exp-1 .experience-card-placeholder { background: #c8a898; }
.exp-2 .experience-card-placeholder { background: #a8b8c8; }
.exp-3 .experience-card-placeholder { background: #b8c8a8; }
.exp-4 .experience-card-placeholder { background: #c8a8b8; }

.experience-card-body {
  padding: 20px;
  background: var(--white);
}

.experience-card-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.experience-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
}

.app-mockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup-image {
  width: min(100%, 360px);
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(97,21,53,0.22);
}

/* ============================================================
   14. Safety Section
   ============================================================ */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.safety-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.safety-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--soft-blush);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.safety-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   15. Testimonials
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--soft-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-pink);
  font-size: 18px;
}

.testimonial-author-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Testimonial Slider (Mobile) */
.testimonial-slider {
  display: none;
}

/* ============================================================
   16. FAQ Accordion
   ============================================================ */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.faq-question:hover {
  color: var(--primary-pink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
}

.faq-item.active .faq-icon {
  background: var(--primary-pink);
  color: var(--white);
  border-color: var(--primary-pink);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   17. Final CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-pink) 0%, #e0285f 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   18. Footer
   ============================================================ */
.site-footer {
  background: var(--soft-blush);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-age-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--primary-pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================================
   19. Forms
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-pink);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 13px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-pink);
}

.form-check label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   20. Login Page
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-form-wrapper {
  width: 100%;
  max-width: 420px;
}

.login-form-wrapper .logo {
  margin-bottom: 40px;
}

.login-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.login-form-wrapper .login-subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.login-form-wrapper .btn {
  width: 100%;
  margin-bottom: 20px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--text-secondary);
  font-size: 13px;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.login-link {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.login-link a {
  color: var(--primary-pink);
  font-weight: 600;
}
.login-link a:hover {
  text-decoration: underline;
}

.login-image-side {
  background: linear-gradient(135deg, #f8d0dc 0%, #f5c0c8 50%, #e8c4b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-image-placeholder {
  max-width: 400px;
  text-align: center;
  color: var(--burgundy);
}

.login-image-placeholder .login-img-icon {
  font-size: 120px;
  margin-bottom: 24px;
  opacity: 0.6;
}

/* ============================================================
   21. About Page
   ============================================================ */
.about-mission {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--soft-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-pink);
}

.about-value-card h3 {
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   22. Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--soft-blush);
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-detail h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.contact-detail p {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: #22c55e;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

/* ============================================================
   23. SEO Content Pages (Guides)
   ============================================================ */
.content-page {
  padding: 60px 0 80px;
}

.content-article {
  max-width: 780px;
  margin: 0 auto;
}

.content-article h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-article h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-article p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.content-article ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-article ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: 15px;
}

.content-article .content-tip {
  background: var(--soft-blush);
  border-left: 3px solid var(--primary-pink);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.content-cta-box {
  background: linear-gradient(135deg, var(--primary-pink), #e0285f);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  color: var(--white);
}

.content-cta-box h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.content-cta-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

/* ============================================================
   24. City Pages
   ============================================================ */
.city-hero-section {
  padding: 60px 0;
}

.city-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.city-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.city-intro-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d8c8c0, #c0b8c0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.city-dating-scene {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-scene-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}
.city-scene-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.city-scene-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.city-scene-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.city-scene-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   25. Legal Pages
   ============================================================ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 22px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: 15px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-style: italic;
}

/* ============================================================
   26. Breadcrumbs
   ============================================================ */
.breadcrumb-section {
  padding: 20px 0 0;
  background: transparent;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}
.breadcrumb a {
  color: var(--primary-pink);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-sep {
  color: var(--border-color);
}

/* Prose block for text-heavy content */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.prose p a {
  color: var(--primary-pink);
  font-weight: 500;
}
.prose p a:hover {
  text-decoration: underline;
}

/* SEO insight blocks on the homepage */
.insight-panel,
.local-intent-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.insight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.insight-copy,
.local-intent-main,
.insight-note {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
}

.insight-copy p,
.local-intent-main p {
  margin-bottom: 18px;
}

.insight-copy p:last-child,
.local-intent-main p:last-child {
  margin-bottom: 0;
}

.insight-card-grid {
  display: grid;
  gap: 14px;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.insight-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.insight-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.insight-kicker {
  display: inline-block;
  color: var(--primary-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.insight-note {
  grid-column: 1 / -1;
  background: var(--soft-blush);
  border-left: 3px solid var(--primary-pink);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-top: 4px;
}

.local-intent-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
}

.city-intent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-intent-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.city-intent-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}

.city-intent-item span {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================================
   27. Scroll Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   28. Responsive — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    display: block;
  }

  .hero .container,
  .hero-city .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    order: 1;
  }
  .hero-image {
    order: 0;
  }
  .hero-image-placeholder {
    max-height: 350px;
    aspect-ratio: 16/9;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .insight-panel,
  .local-intent-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .login-page {
    grid-template-columns: 1fr;
  }
  .login-image-side {
    display: none;
  }

  .city-intro-grid {
    grid-template-columns: 1fr;
  }

  .city-dating-scene {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Mobile nav */
  .main-nav,
  .header-actions .btn-secondary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }
}

/* ============================================================
   29. Responsive — Mobile (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --container-padding: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .insight-card,
  .city-intent-item {
    padding: 18px;
  }

  .city-intent-list {
    grid-template-columns: 1fr;
  }

  .insight-note {
    padding: 16px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero {
    padding: 100px 0 60px;
  }
  .hero-city {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }
  .logo-emoji {
    font-size: 22px;
  }
  .logo-badge {
    font-size: 10px;
    padding: 3px 7px;
  }
  .header-actions .btn-primary {
    padding: 10px 16px;
    font-size: 14px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 16px;
  }

  .steps-container::before {
    left: 24px;
  }
  .step-item {
    gap: 20px;
  }
  .step-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
  .step-content {
    padding: 16px 20px;
  }

  .content-page {
    padding: 30px 0 60px;
  }

  .city-hero-section {
    padding: 30px 0 30px;
  }
}
