/* ============================================
   NEPALI VIVAH — Premium Design System
   A modern, warm, and trustworthy matrimonial platform
   ============================================ */

/* ---------- Fonts loaded via <link> in HTML for faster parallel download ---------- */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette — warm rose/burgundy */
  --primary: #b5294e;
  --primary-dark: #8c1d3b;
  --primary-light: #d94f6e;
  --primary-50: rgba(181, 41, 78, 0.08);
  --primary-100: rgba(181, 41, 78, 0.15);

  /* Accent — soft gold */
  --accent: #d4a853;
  --accent-light: #f0d48a;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #faf9f7;
  --gray-100: #f3f1ee;
  --gray-200: #e8e5e0;
  --gray-300: #d5d0c8;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  /* Functional */
  --success: #16a34a;
  --error: #dc2626;
  --info: #2563eb;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--primary-dark);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: var(--space-md); }

.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }

/* ---------- Layout ---------- */
.nv-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nv-section {
  padding: var(--space-4xl) 0;
}

.nv-grid {
  display: grid;
  gap: var(--space-xl);
}

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

@media (max-width: 992px) {
  .nv-grid-3, .nv-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nv-grid-2, .nv-grid-3, .nv-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   NAVBAR
   ============================================ */
.nv-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--duration) var(--ease);
}

.nv-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nv-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nv-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nv-logo .logo-icon {
  width: 36px;
  height: 36px;
}

.nv-logo:hover {
  color: var(--primary-dark);
}

.nv-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nv-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--duration) var(--ease);
}

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

.nv-nav-links a:hover,
.nv-nav-links a.active {
  color: var(--primary);
}

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

/* CTA Button in nav */
.nv-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.55rem 1.3rem;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 2px 8px rgba(181, 41, 78, 0.25);
}

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

.nv-nav-cta:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 41, 78, 0.35);
}

/* Mobile hamburger */
.nv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nv-hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nv-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nv-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nv-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nv-hamburger { display: flex; }

  .nv-nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: var(--space-xl) 0;
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease);
    overflow-y: auto;
  }

  .nv-nav-links.open {
    transform: translateX(0);
  }

  .nv-nav-links li {
    width: 100%;
    text-align: center;
  }

  .nv-nav-links a {
    display: block;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
  }

  .nv-nav-cta {
    margin: var(--space-md) var(--space-xl);
    justify-content: center;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.nv-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #fdf2f8 0%, #fff5f5 30%, #fff7ed 70%, #fef9ee 100%);
  overflow: hidden;
}

.nv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(181,41,78,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(181,41,78,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating decorative shapes */
.nv-hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.nv-hero-float:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--primary-light);
  top: -80px; right: -60px;
  animation-delay: 0s;
}
.nv-hero-float:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--accent);
  bottom: -60px; left: -40px;
  animation-delay: 2s;
}
.nv-hero-float:nth-child(3) {
  width: 120px; height: 120px;
  background: var(--primary);
  top: 40%; left: 8%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.nv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--space-xl);
}

.nv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1rem;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nv-hero h1 {
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.nv-hero h1 span {
  color: var(--primary);
  position: relative;
}

.nv-hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
}

.nv-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(181, 41, 78, 0.30);
}

.nv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181, 41, 78, 0.40);
  color: var(--white);
}

.nv-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.nv-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.nv-btn-ghost {
  background: transparent;
  color: var(--gray-600);
}

.nv-btn-ghost:hover {
  color: var(--primary);
  background: var(--primary-50);
}

.nv-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.nv-btn-block {
  width: 100%;
}

/* ---------- Hero CTA group ---------- */
.nv-hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Trust strip ---------- */
.nv-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-top: var(--space-3xl);
}

.nv-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nv-trust-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.nv-trust-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */
.nv-features {
  background: var(--white);
}

.nv-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.nv-section-header .nv-overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.nv-section-header h2 {
  margin-bottom: var(--space-md);
}

.nv-section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* Feature card */
.nv-feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.nv-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nv-feature-card:hover {
  background: var(--white);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.nv-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.nv-feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.nv-feature-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.nv-testimonials {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.nv-testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--duration) var(--ease);
}

.nv-testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.nv-testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.nv-testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.nv-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nv-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.nv-testimonial-name {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9rem;
}

.nv-testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.nv-steps {
  background: var(--white);
}

.nv-step {
  text-align: center;
  position: relative;
}

.nv-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.nv-step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.nv-step p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ============================================
   FORMS — Biodata / Contact
   ============================================ */
.nv-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3xl);
}

.nv-form-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.nv-form-header h1 {
  margin-bottom: var(--space-sm);
}

.nv-form-header p {
  color: var(--gray-500);
}

.nv-form-group {
  margin-bottom: var(--space-lg);
}

.nv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 600px) {
  .nv-form-row { grid-template-columns: 1fr; }
}

.nv-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.nv-input,
.nv-select,
.nv-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  outline: none;
}

.nv-input:focus,
.nv-select:focus,
.nv-textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-50);
}

.nv-input::placeholder,
.nv-textarea::placeholder {
  color: var(--gray-400);
}

.nv-textarea {
  min-height: 120px;
  resize: vertical;
}

.nv-select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2378716C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.nv-file-input {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-600);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.nv-file-input:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}

.nv-invalid-feedback {
  display: none;
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 4px;
}

.was-validated .nv-input:invalid ~ .nv-invalid-feedback,
.was-validated .nv-select:invalid ~ .nv-invalid-feedback,
.was-validated .nv-file-input:invalid ~ .nv-invalid-feedback {
  display: block;
}

.was-validated .nv-input:invalid,
.was-validated .nv-select:invalid {
  border-color: var(--error);
}

.was-validated .nv-input:valid,
.was-validated .nv-select:valid {
  border-color: var(--success);
}

/* Form progress indicator */
.nv-form-progress {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.nv-form-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.nv-form-progress-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CARDS — Profile / General
   ============================================ */
.nv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

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

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

.nv-card-body {
  padding: var(--space-xl);
}

.nv-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.nv-card-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Profile detail table */
.nv-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.nv-detail-table th,
.nv-detail-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
}

.nv-detail-table th {
  width: 40%;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
}

.nv-detail-table td {
  color: var(--gray-600);
}

/* ============================================
   CONTENT PAGES — Terms, Privacy, Refunds
   ============================================ */
.nv-content-page {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-4xl);
}

.nv-content-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: var(--space-3xl);
}

.nv-content-card h1 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--primary);
}

.nv-content-card h2 {
  font-size: 1.25rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--gray-800);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-50);
}

.nv-content-card p {
  color: var(--gray-600);
  line-height: 1.8;
}

.nv-content-card ul {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.nv-content-card ul li {
  margin-bottom: var(--space-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

.nv-content-card .highlight {
  color: var(--primary);
  font-weight: 600;
}

.nv-effective-date {
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.nv-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--gray-200);
}

.nv-contact-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
}

.nv-contact-item-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.nv-contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.nv-contact-item a {
  font-size: 0.9rem;
  color: var(--primary);
}

/* ============================================
   PAYMENT PAGE
   ============================================ */
.nv-payment-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fdf2f8, #fff7ed);
  padding: var(--space-xl);
}

.nv-payment-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.nv-payment-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: var(--space-2xl);
  text-align: center;
  color: var(--white);
}

.nv-payment-header h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.nv-payment-header .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
}

.nv-payment-header .price-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

.nv-payment-body {
  padding: var(--space-2xl);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.nv-success-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fdf2f8, #ecfdf5);
  padding: var(--space-xl);
}

.nv-success-card {
  text-align: center;
  max-width: 540px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-3xl);
}

.nv-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(22, 163, 74, 0); }
}

.nv-success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.nv-success-card h1 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.nv-success-card p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
}

.nv-whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: 0.6rem 1.4rem;
  background: #128c7e;
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.nv-profile-hero {
  padding: var(--space-3xl) 0;
  background: linear-gradient(160deg, #fdf2f8, #fff7ed);
}

.nv-profile-detail-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.nv-profile-img-wrapper {
  position: relative;
  overflow: hidden;
}

.nv-profile-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.nv-profile-body {
  padding: var(--space-2xl);
}

.nv-profile-name {
  font-size: 1.8rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

/* Profile grid (browse profiles) */
.nv-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.nv-profile-thumb {
  cursor: pointer;
}

.nv-profile-thumb .nv-card-img {
  height: 260px;
}

/* ============================================
   FOOTER
   ============================================ */
.nv-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.nv-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
}

@media (max-width: 768px) {
  .nv-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.nv-footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.nv-footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 360px;
}

.nv-footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.nv-footer-links {
  list-style: none;
}

.nv-footer-links li {
  margin-bottom: var(--space-sm);
}

.nv-footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}

.nv-footer-links a:hover {
  color: var(--white);
}

.nv-footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.nv-footer-copy {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ============================================
   ANIMATIONS — Scroll reveal
   ============================================ */
.nv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* ============================================
   UTILITIES
   ============================================ */
.nv-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: var(--space-md) auto;
}

.nv-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nv-badge-primary {
  background: var(--primary-50);
  color: var(--primary);
}

.nv-badge-success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
}

/* Skip to main content (accessibility) */
.nv-skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top var(--duration) var(--ease);
}

.nv-skip-link:focus {
  top: var(--space-md);
  color: var(--white);
}

/* ---------- Responsive fine-tuning ---------- */
@media (max-width: 768px) {
  .nv-hero {
    min-height: 75vh;
    padding: var(--space-3xl) 0;
  }

  .nv-section {
    padding: var(--space-3xl) 0;
  }

  .nv-form-wrapper {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
  }

  .nv-content-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
  }

  .nv-trust-strip {
    gap: var(--space-xl);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .nv-container {
    padding: 0 var(--space-md);
  }

  .nv-hero-content {
    padding: var(--space-md);
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .nv-navbar, .nv-footer, .nv-hero-float { display: none; }
  body { background: #fff; color: #000; }
}
