/* ============================================
   LoveConnect - Premium Dating Landing Page
   Styles
   ============================================ */

/* === CSS Variables === */
:root {
  --color-white: #FFFFFF;
  --color-bg-light: #FFF5F7;
  --color-bg-section: #F3F4F6;
  --color-pink: #FF6B9D;
  --color-purple: #C44FE2;
  --color-deep-purple: #7B2FBE;
  --color-coral: #FF4D6D;
  --color-gold: #FFB800;
  --color-text-dark: #1A1A2E;
  --color-text-body: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;

  --gradient-primary: linear-gradient(135deg, #FF6B9D, #C44FE2, #7B2FBE);
  --gradient-soft: linear-gradient(135deg, #FF6B9D20, #C44FE220);
  --gradient-cta: linear-gradient(135deg, #FF4D6D, #FF6B9D, #C44FE2);
  --gradient-hero: linear-gradient(135deg, #FFF5F7 0%, #F3E8FF 50%, #EDE9FE 100%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(255,107,157,0.3);

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1280px;
  --section-padding: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

/* === Utility === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-body);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Scroll Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Mouse Follow Glow === */
.mouse-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-body);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--color-text-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  background: var(--gradient-cta);
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255,77,109,0.3);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,77,109,0.4);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,79,226,0.06) 0%, transparent 70%);
  animation: floatOrb 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,157,0.06) 0%, transparent 70%);
  animation: floatOrb 15s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,107,157,0.1);
  border: 1px solid rgba(255,107,157,0.2);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient-cta);
  color: white;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255,77,109,0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,77,109,0.45);
}

.btn-primary .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary.pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,77,109,0.35); }
  50% { box-shadow: 0 4px 35px rgba(255,77,109,0.55), 0 0 60px rgba(255,107,157,0.2); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: white;
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-pink);
  color: var(--color-coral);
}

/* Hero Right - Profile Cards */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: absolute;
  width: 200px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-xl);
}

.hero-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero-card-info {
  padding: 14px 16px;
}

.hero-card-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.hero-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-body);
}

.hero-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10B981;
  font-size: 12px;
  font-weight: 600;
}

.hero-card-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-card:nth-child(1) { top: 10%; left: 5%; z-index: 3; animation: cardFloat1 6s ease-in-out infinite; }
.hero-card:nth-child(2) { top: 0; left: 35%; z-index: 5; animation: cardFloat2 7s ease-in-out infinite; }
.hero-card:nth-child(3) { top: 15%; right: 5%; z-index: 4; animation: cardFloat3 5.5s ease-in-out infinite; }
.hero-card:nth-child(4) { bottom: 5%; left: 18%; z-index: 2; animation: cardFloat4 6.5s ease-in-out infinite; }
.hero-card:nth-child(5) { bottom: 0; right: 15%; z-index: 1; animation: cardFloat1 7.5s ease-in-out infinite reverse; }

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes cardFloat4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  position: relative;
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-body);
  font-weight: 500;
}

/* ============================================
   DECORATIVE BACKGROUND FIGURES
   ============================================ */
.section-bg-figure {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 280px;
  height: 380px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
  opacity: 0.15;
  transform: rotate(-3deg);
}
.section-bg-figure--right {
  right: 20px;
}
.section-bg-figure--left {
  left: 20px;
}
.bg-decor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-bg-figure:hover .bg-decor-img {
  transform: scale(1.08);
}

/* ============================================
   DECORATIVE COLOR BLOBS
   ============================================ */
.section-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  filter: blur(60px);
}
.section-blob--pink {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-pink), var(--color-purple));
  top: -100px;
  right: -100px;
}
.section-blob--purple {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-purple), var(--color-coral));
  bottom: -80px;
  left: -80px;
}
.section-blob--gold {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--color-gold), rgba(255, 184, 0, 0));
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
.section-blob--coral {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-coral), var(--color-pink));
  top: -120px;
  left: -60px;
}
.section-blob--sm {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-pink), rgba(255, 107, 157, 0));
  bottom: 20px;
  right: 20px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 40%, #FFF0F5 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--gradient-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-purple);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s var(--ease-smooth);
}

.feature-card:hover .feature-icon svg {
  stroke: white;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.feature-desc {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ============================================
   CITIES SECTION
   ============================================ */
.cities {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #F3F4F6 0%, #FFF0F5 30%, #FFF5F7 60%, #F3F4F6 100%);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.city-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.city-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.city-card:hover .city-image img {
  transform: scale(1.08);
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
}

.city-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.city-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  opacity: 0.9;
}

.city-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-match-count {
  font-size: 14px;
  color: var(--color-text-body);
}

.city-match-count strong {
  color: var(--color-coral);
}

.city-btn {
  padding: 8px 20px;
  background: var(--gradient-soft);
  color: var(--color-purple);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.city-btn:hover {
  background: var(--gradient-primary);
  color: white;
}

/* ============================================
   MEMBERS SECTION
   ============================================ */
.members {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 50%, #F3EFF9 100%);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.member-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.member-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.member-card:hover .member-photo img {
  transform: scale(1.05);
}

.member-badge-online {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(16,185,129,0.9);
  backdrop-filter: blur(8px);
  color: white;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.member-badge-verified {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: #10B981;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.member-details {
  padding: 16px 20px;
}

.member-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.member-name {
  font-weight: 600;
  font-size: 17px;
}

.member-age {
  font-weight: 400;
  color: var(--color-text-body);
}

.member-city {
  font-size: 13px;
  color: var(--color-text-body);
  margin-bottom: 10px;
}

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

.member-tag {
  padding: 4px 10px;
  background: var(--color-bg-light);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--color-text-body);
  font-weight: 500;
}

.member-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-distance {
  font-size: 12px;
  color: var(--color-text-light);
}

.member-like-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s var(--ease-smooth);
}

.member-like-btn:hover {
  background: var(--color-coral);
  color: white;
  transform: scale(1.15);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--color-bg-light);
}

.steps-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 3px;
  background: var(--color-border);
  z-index: 0;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 1s var(--ease-smooth);
}

.step-item.revealed .step-connector::after {
  width: 100%;
}

.step-item:last-child .step-connector {
  display: none;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-smooth);
}

.step-item.revealed .step-number {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.step-desc {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.stories {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 40%, #F0F4FF 100%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.story-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: rgba(255,107,157,0.1);
  line-height: 1;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.story-stars {
  color: var(--color-gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.story-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-style: italic;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-bg-light);
}

.story-author-name {
  font-weight: 600;
  font-size: 15px;
}

.story-author-detail {
  font-size: 13px;
  color: var(--color-text-body);
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.safety {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 100%);
  color: white;
}

.safety .section-title {
  color: white;
}

.safety .section-subtitle {
  color: rgba(255,255,255,0.7);
}

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

.safety-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-smooth);
}

.safety-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

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

.safety-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.safety-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  position: relative;
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 50%, #F8F4FF 100%);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
  border-color: var(--color-pink);
}

.faq-item.active {
  border-color: var(--color-pink);
  box-shadow: 0 4px 20px rgba(255,107,157,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.faq-question:hover {
  background: var(--color-bg-light);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

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

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

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(123,47,190,0.75) 100%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-glass.primary {
  background: var(--gradient-cta);
  border: none;
  box-shadow: 0 4px 20px rgba(255,77,109,0.4);
}

.btn-glass.primary:hover {
  box-shadow: 0 8px 35px rgba(255,77,109,0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F0F1A;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: all 0.3s var(--ease-smooth);
}

.footer-col a:hover {
  color: var(--color-pink);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE: TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-card {
    width: 160px;
  }

  .hero-card img {
    height: 190px;
  }

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

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

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

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

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

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

/* ============================================
   RESPONSIVE: MOBILE LANDSCAPE (768px)
   ============================================ */
@media (max-width: 768px) {
  .section-bg-figure {
    width: 160px;
    height: 220px;
    opacity: 0.08;
  }
  .section-bg-figure--right {
    right: 10px;
  }
  .section-bg-figure--left {
    left: 10px;
  }

  :root {
    --section-padding: 50px;
  }

  /* ---- Navigation ---- */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
  }

  .nav-links a {
    font-size: 20px;
    padding: 12px 24px;
  }

  .nav-links .btn-primary {
    font-size: 16px;
    padding: 14px 36px;
  }

  .nav-mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* ---- Hero ---- */
  .hero {
    min-height: auto;
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-card {
    width: 130px;
  }

  .hero-card img {
    height: 150px;
  }

  .hero-card-info {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-card-info .card-name {
    font-size: 14px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    font-size: 15px;
    padding: 14px 28px;
  }

  /* ---- Stats ---- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* ---- Features ---- */
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---- Cities ---- */
  .cities-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---- Members ---- */
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .member-card {
    border-radius: 16px;
  }

  .member-tags {
    flex-wrap: wrap;
  }

  .member-tag {
    font-size: 11px;
    padding: 3px 8px;
  }

  .member-card .btn-like {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .member-info h3 {
    font-size: 16px;
  }

  .member-info .member-location {
    font-size: 13px;
  }

  .member-info .member-distance {
    font-size: 12px;
  }

  /* ---- Steps ---- */
  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: 320px;
  }

  /* ---- Success Stories ---- */
  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---- Safety ---- */
  .safety-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* ---- FAQ ---- */
  .faq-list {
    max-width: 100%;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  /* ---- CTA ---- */
  .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  /* ---- Footer ---- */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE: MOBILE PORTRAIT (480px)
   ============================================ */
@media (max-width: 480px) {
  .section-bg-figure {
    display: none;
  }

  :root {
    --section-padding: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  /* ---- Navbar ---- */
  .navbar {
    padding: 12px 0;
  }

  .nav-logo {
    font-size: 22px;
  }

  .nav-links a {
    font-size: 18px;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-visual {
    height: 220px;
    margin-top: 10px;
  }

  .hero-card {
    width: 90px;
    border-radius: 12px;
  }

  .hero-card:nth-child(n+5) {
    display: none;
  }

  .hero-card img {
    height: 100px;
  }

  .hero-card-info {
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero-card-info .card-name {
    font-size: 12px;
  }

  .hero-card-info .card-verified {
    font-size: 9px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 14px 20px;
  }

  .hero-visual {
    height: 260px;
    margin-top: 20px;
  }

  .hero-card {
    width: 110px;
    border-radius: 14px;
  }

  .hero-card img {
    height: 130px;
  }

  .hero-card-info {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-card-info .card-name {
    font-size: 13px;
  }

  .hero-card-info .card-verify {
    font-size: 9px;
  }

  .hero-card:nth-child(4),
  .hero-card:nth-child(5),
  .hero-card:nth-child(6),
  .hero-card:nth-child(7) {
    display: none;
  }

  /* ---- Stats ---- */
  .stats {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  .stat-icon {
    font-size: 24px;
  }

  /* ---- Features ---- */
  .features-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 17px;
  }

  .feature-card p {
    font-size: 14px;
  }

  /* ---- Cities ---- */
  .cities-grid {
    gap: 14px;
  }

  .city-card {
    border-radius: 16px;
  }

  .city-info h3 {
    font-size: 17px;
  }

  .city-info p {
    font-size: 13px;
  }

  .city-info .btn-outline {
    font-size: 13px;
    padding: 8px 18px;
  }

  /* ---- Members ---- */
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .member-card {
    border-radius: 14px;
  }

  .member-card .member-image {
    height: 160px;
  }

  .member-info {
    padding: 10px 12px 14px;
  }

  .member-info h3 {
    font-size: 15px;
  }

  .member-tags {
    gap: 4px;
  }

  .member-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .member-card .btn-like {
    width: 32px;
    height: 32px;
    font-size: 14px;
    right: 8px;
    bottom: 8px;
  }

  .member-status {
    font-size: 10px;
    padding: 2px 8px;
    top: 8px;
    left: 8px;
  }

  .member-distance {
    font-size: 11px;
  }

  /* ---- Steps ---- */
  .steps {
    padding: 50px 0;
  }

  .step-card {
    padding: 24px 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 14px;
  }

  /* ---- Stories ---- */
  .story-card {
    padding: 24px 20px;
  }

  .story-card .stars {
    font-size: 14px;
  }

  .story-card blockquote {
    font-size: 15px;
  }

  .story-card .story-author {
    font-size: 14px;
  }

  /* ---- Safety ---- */
  .safety-card {
    padding: 24px 20px;
  }

  .safety-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

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

  .safety-card p {
    font-size: 14px;
  }

  /* ---- FAQ ---- */
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 0 14px 0;
  }

  /* ---- CTA ---- */
  .cta {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 14px 20px;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

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

  .footer-col a,
  .footer-col p {
    font-size: 14px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ============================================
   RESPONSIVE: SMALL PHONES (380px)
   ============================================ */
@media (max-width: 380px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-visual {
    height: 220px;
  }

  .hero-card {
    width: 95px;
  }

  .hero-card img {
    height: 110px;
  }

  .hero-card-info {
    padding: 6px 8px;
    font-size: 11px;
  }

  .hero-card-info .card-name {
    font-size: 12px;
  }

  .members-grid {
    gap: 8px;
  }

  .member-card .member-image {
    height: 140px;
  }

  .member-info h3 {
    font-size: 14px;
  }

  .member-tag {
    font-size: 9px;
    padding: 1px 5px;
  }

  .section-title {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }
}

/* ============================================
   CHAT MODAL
   ============================================ */
.chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.chat-overlay.active {
  opacity: 1;
  visibility: visible;
}

.chat-modal {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 420px;
  height: 580px;
  background: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: var(--shadow-xl);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-smooth);
  overflow: hidden;
}

.chat-modal.active {
  transform: translateY(0);
}

@media (min-width: 769px) {
  .chat-modal {
    bottom: 40px;
    right: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 80px rgba(0,0,0,0.25);
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--gradient-primary);
  color: white;
  flex-shrink: 0;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
}

.chat-name {
  font-weight: 600;
  font-size: 16px;
}

.chat-status {
  font-size: 13px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.chat-status .status-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
}

.chat-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.3);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FAFAFE;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

.chat-msg {
  max-width: 80%;
  animation: msgSlideIn 0.3s var(--ease-smooth);
}

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

.chat-msg-other {
  align-self: flex-start;
}

.chat-msg-self {
  align-self: flex-end;
}

.chat-msg-text {
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
}

.chat-msg-other .chat-msg-text {
  background: white;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-sm);
  border-bottom-left-radius: 4px;
}

.chat-msg-self .chat-msg-text {
  background: var(--gradient-primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-msg-time {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 4px;
  padding: 0 4px;
}

.chat-msg-self .chat-msg-time {
  text-align: right;
}

.chat-input-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--color-border);
  background: white;
  flex-shrink: 0;
}

.chat-input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s var(--ease-smooth);
}

.chat-input:focus {
  border-color: var(--color-pink);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}

@media (max-width: 480px) {
  .chat-modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    bottom: 0;
    right: 0;
  }
}
