/* Homepage extra sections */
.rs-how-section,
.rs-trust-section,
.rs-testimonials-section,
.rs-join-cta {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* —— How It Works (mockup) —— */
.rs-how-section {
  padding: 56px 16px 60px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 45, 85, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 92% 18%, rgba(255, 45, 85, 0.04) 0%, transparent 38%),
    #f5e9ed;
}

.rs-how-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.rs-how-head {
  text-align: center;
  margin-bottom: 40px;
}

.rs-how-head-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rs-how-head-deco span {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4b0ba, transparent);
}

.rs-how-head-deco i {
  color: #e11d48;
  font-size: 12px;
}

.rs-how-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
}

.rs-how-title-accent {
  background: linear-gradient(90deg, #ff2d55 0%, #e11d48 55%, #51071B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rs-how-sub {
  margin: 0 auto;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.rs-how-hearts {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #e11d48;
  font-size: 13px;
}

.rs-how-hearts span:nth-child(2) {
  font-size: 10px;
  opacity: 0.85;
}

.rs-steps-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 18px;
  padding-top: 6px;
}

.rs-step-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  text-align: center;
  padding: 36px 20px 52px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255, 45, 85, 0.08);
  box-shadow: 0 14px 36px rgba(255, 45, 85, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: visible;
}

.rs-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(255, 45, 85, 0.12);
}

.rs-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5c8a 0%, #e11d48 55%, #51071B 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 6px 16px rgba(225, 29, 72, 0.35);
  z-index: 3;
  pointer-events: none;
}

.rs-step-icon-ring {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 10px auto 18px;
}

.rs-step-icon {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #be123c;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffe4e8 55%, #ffd6de 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 45, 85, 0.08);
}

.rs-step-icon--search {
  font-size: 26px;
}

.rs-step-search-heart {
  position: absolute;
  font-size: 11px;
  color: #e11d48;
  margin-top: 2px;
  margin-left: 2px;
}

.rs-step-mini-heart {
  position: absolute;
  color: rgba(244, 114, 182, 0.45);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.rs-step-mini-heart.m1 { top: 8px; left: 6px; font-size: 9px; }
.rs-step-mini-heart.m2 { top: 18px; right: 4px; font-size: 8px; opacity: 0.7; }
.rs-step-mini-heart.m3 { bottom: 12px; left: 12px; font-size: 11px; opacity: 0.55; }

.rs-step-card h3 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a2e;
}

.rs-step-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

.rs-step-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 44' preserveAspectRatio='none'%3E%3Cpath d='M0 28 Q65 8 130 24 T260 20 L260 44 L0 44 Z' fill='%23ffe4e8'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
}

.rs-step-wave i {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 11px;
  color: #51071B;
  opacity: 0.85;
}

.rs-step-arrow {
  flex: 0 0 36px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #51071B;
  margin: 0 2px;
}

.rs-step-arrow span {
  display: block;
  width: 18px;
  height: 0;
  border-top: 2px dashed #51071B;
}

.rs-step-arrow i {
  font-size: 11px;
  margin-left: -2px;
}

.rs-section-head {
  text-align: center;
  margin-bottom: 36px;
}

.rs-section-head-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rs-section-head-deco span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4b0ba, transparent);
}

.rs-section-head-deco i {
  color: #e11d48;
  font-size: 12px;
}

.rs-section-head h2 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #1e3a5f;
}

.rs-section-head h2 em {
  font-style: normal;
  color: #e11d48;
}

.rs-section-head p {
  margin: 0 auto;
  max-width: 520px;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.55;
}

/* —— Why Choose Us (mockup) —— */
.rs-trust-section {
  position: relative;
  padding: 56px 16px 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 85, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(255, 45, 85, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #f5e9ed 0%, #efe4e8 100%);
}

.rs-trust-section::before,
.rs-trust-section::after {
  content: '♥';
  position: absolute;
  color: rgba(225, 29, 72, 0.05);
  font-size: 140px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.rs-trust-section::before {
  top: 6%;
  left: -2%;
  transform: rotate(-12deg);
}

.rs-trust-section::after {
  top: 10%;
  right: -2%;
  transform: rotate(10deg);
}

.rs-trust-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.rs-trust-head {
  text-align: center;
  margin-bottom: 34px;
}

.rs-trust-head-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rs-trust-head-deco span {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4b0ba, transparent);
}

.rs-trust-head-deco i {
  color: #e11d48;
  font-size: 12px;
}

.rs-trust-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
}

.rs-trust-title-accent {
  background: linear-gradient(90deg, #ff2d55 0%, #e11d48 55%, #51071B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rs-trust-sub {
  margin: 0;
  font-size: 15px;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rs-trust-sub strong {
  color: #e11d48;
  font-weight: 800;
}

.rs-trust-leaf {
  color: #51071B;
  font-size: 13px;
  opacity: 0.85;
}

.rs-trust-leaf--right {
  transform: scaleX(-1);
}

.rs-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rs-trust-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 45, 85, 0.08);
  box-shadow: 0 12px 32px rgba(255, 45, 85, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.rs-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 45, 85, 0.11);
}

.rs-trust-num {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  border-radius: 0 18px 0 12px;
  background: linear-gradient(135deg, #ff5c8a 0%, #e11d48 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.rs-trust-icon-ring {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #fff;
  background: radial-gradient(circle at 30% 25%, #ff8fab 0%, #e11d48 55%, #be123c 100%);
  box-shadow:
    inset 0 0 0 6px #ffe4e8,
    0 8px 18px rgba(225, 29, 72, 0.18);
}

.rs-trust-body {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 2px;
  padding-right: 28px;
}

.rs-trust-body h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
}

.rs-trust-line {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #51071B, #51071B);
  margin-bottom: 8px;
}

.rs-trust-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
}

.rs-trust-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 52' preserveAspectRatio='none'%3E%3Cpath d='M0 28 Q300 4 600 24 T1200 18 L1200 52 L0 52 Z' fill='%23ffe4e8'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  opacity: 0.95;
}

/* —— Browse Matrimonial Profiles By —— */
.rs-matrimonial-browse {
  position: relative;
  padding: 52px 16px 58px;
  background-color: #0a0a0a;
  background-image: url('../Image/browse-matrimonial-bg.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.rs-matrimonial-browse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(127, 10, 46, 0.2) 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.rs-matrimonial-browse-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.rs-matrimonial-browse-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.rs-matrimonial-browse-head {
  text-align: center;
  margin-bottom: 28px;
}

.rs-matrimonial-browse-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px 0;
}

.rs-matrimonial-browse-deco span {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75), transparent);
}

.rs-matrimonial-browse-deco i {
  color: #d4af37;
  font-size: 11px;
}

.rs-matrimonial-browse-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #e8c96a;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(184, 134, 11, 0.35), 0 2px 12px rgba(0, 0, 0, 0.35);
}

.rs-matrimonial-browse-accent {
  color: #d4af37;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.rs-matrimonial-browse-rows {
  display: grid;
  gap: 0;
}

.rs-matrimonial-browse-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rs-matrimonial-browse-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rs-matrimonial-browse-label {
  flex: 0 0 118px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.rs-matrimonial-browse-label i {
  width: 18px;
  text-align: center;
  color: #51071B;
  font-size: 14px;
  flex-shrink: 0;
}

.rs-matrimonial-browse-label span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  color: #51071B;
  white-space: nowrap;
}

.rs-matrimonial-browse-divider {
  flex: 0 0 1px;
  align-self: stretch;
  min-height: 36px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 4px;
}

.rs-matrimonial-browse-tags {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rs-matrimonial-browse-tags a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
  line-height: 1.2;
  backdrop-filter: blur(4px);
}

.rs-matrimonial-browse-tags a:hover {
  border-color: rgba(251, 113, 133, 0.75);
  color: #fff;
  background: rgba(225, 29, 72, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 720px) {
  .rs-matrimonial-browse-row {
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .rs-matrimonial-browse-label {
    flex: none;
    padding-top: 0;
  }

  .rs-matrimonial-browse-divider {
    display: none;
  }
}

/* —— Testimonials —— */
.rs-testimonials-section {
  padding: 52px 16px 56px;
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
}

.rs-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rs-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rs-testimonial-card {
  position: relative;
  padding: 24px 20px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rs-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(225, 29, 72, 0.12);
}

.rs-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #fbbf24;
  font-size: 13px;
}

.rs-testimonial-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  font-style: italic;
}

.rs-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rs-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b0ba, #fed7aa);
  display: grid;
  place-items: center;
  color: #e11d48;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.rs-testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #1e3a5f;
}

.rs-testimonial-author span {
  font-size: 12px;
  color: #9ca3af;
}

/* —— Join CTA —— */
.rs-join-cta {
  padding: 0 16px 56px;
  background: #fff;
}

.rs-join-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 45%),
    linear-gradient(135deg, #ea580c 0%, #e11d48 45%, #be123c 100%);
  box-shadow: 0 20px 50px rgba(190, 18, 60, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.rs-join-cta-inner::after {
  content: '♥';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.rs-join-cta-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 560px;
}

.rs-join-cta-copy h2 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

.rs-join-cta-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
}

.rs-join-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rs-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rs-join-btn-primary {
  background: #fff;
  color: #be123c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rs-join-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #be123c;
}

.rs-join-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.rs-join-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .rs-steps-track {
    flex-wrap: wrap;
    gap: 28px 16px;
    justify-content: center;
  }

  .rs-step-arrow {
    display: none;
  }

  .rs-step-card {
    flex: 1 1 calc(50% - 16px);
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .rs-trust-grid,
  .rs-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rs-join-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .rs-join-cta-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .rs-step-card {
    flex: 1 1 100%;
    max-width: 340px;
  }

  .rs-trust-grid,
  .rs-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .rs-join-btn {
    width: 100%;
    justify-content: center;
  }
}
