/**
 * Nepal Vivah - Main Design System & Theme Stylesheet
 * Brand Colors: Royal Crimson (#8B0000), Nepali Gold (#C9A227), Himalayan Cream (#FCF9F4), Charcoal (#1F2937)
 */

:root {
    --nv-primary: #8B0000;
    --nv-primary-dark: #680000;
    --nv-primary-light: #A31818;
    --nv-secondary: #C9A227;
    --nv-secondary-light: #E0BA3E;
    --nv-secondary-dark: #9E7D17;
    --nv-bg: #FCF9F4;
    --nv-cream: #FBF4E8;
    --nv-dark: #1F2937;
    --nv-muted: #6B7280;
    --nv-border: #E5E7EB;
    --nv-border-gold: #EAD8AC;
    --nv-success: #10B981;
    --nv-danger: #EF4444;
    --nv-font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --nv-font-nepali: 'Mukta', sans-serif;
    --nv-radius-sm: 6px;
    --nv-radius-md: 12px;
    --nv-radius-lg: 18px;
    --nv-radius-full: 9999px;
    --nv-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
    --nv-shadow-md: 0 6px 18px rgba(0, 0, 0, 0.07);
    --nv-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.1);
    --nv-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--nv-font-sans);
    background-color: var(--nv-bg);
    color: var(--nv-dark);
    font-size: 16px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

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

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

.nv-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dhaka Cultural Accent Strip */
.nv-dhaka-top-border {
    height: 6px;
    background: repeating-linear-gradient(
        45deg,
        #8B0000,
        #8B0000 12px,
        #C9A227 12px,
        #C9A227 24px,
        #1F2937 24px,
        #1F2937 36px,
        #FFF8F0 36px,
        #FFF8F0 48px
    );
}

.nv-dhaka-bottom-border {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        #8B0000,
        #8B0000 12px,
        #C9A227 12px,
        #C9A227 24px,
        #5E0000 24px,
        #5E0000 36px
    );
}

/* Sticky Header */
.site-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--nv-border-gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--nv-shadow-sm);
}

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

.nv-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.custom-logo {
    max-height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}

.nv-logo-icon {
    font-size: 34px;
}

.nv-logo-text {
    display: flex;
    flex-direction: column;
}

.nv-brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--nv-primary);
    letter-spacing: 1.2px;
    font-family: Georgia, serif;
    line-height: 1.1;
}

.nv-brand-tagline {
    font-size: 12px;
    color: var(--nv-secondary-dark);
    font-family: var(--nv-font-nepali);
    font-weight: 600;
    margin-top: 2px;
}

.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 26px;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu a {
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    letter-spacing: 0.15px;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.main-navigation .nav-menu a:hover {
    color: var(--nv-primary);
}

.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nv-primary);
    transition: all 0.25s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-navigation .nav-menu a:hover::after {
    width: 80%;
}

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

.nv-lang-toggle {
    display: inline-flex;
    align-items: center;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-radius: 20px;
    padding: 2px 6px;
    gap: 4px;
}

.btn-lang-toggle-item {
    background: transparent;
    border: none;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    padding: 3px 8px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.btn-lang-toggle-item:hover {
    color: var(--nv-dark, #1E1B18);
}

.btn-lang-toggle-item.active {
    background: var(--nv-primary, #8B1E3F);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(139, 30, 63, 0.25);
}

.lang-divider {
    color: #CBD5E1;
    font-size: 11px;
}

/* Suppress Google Translate top banner & tooltip to preserve matrimonial design */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
}
body {
    top: 0px !important;
    position: static !important;
}
.skiptranslate > iframe {
    display: none !important;
}

/* User Avatar & Menu */
.nv-user-menu-wrap {
    position: relative;
}

.nv-user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    background: var(--nv-bg);
    border: 1px solid var(--nv-border-gold);
    border-radius: var(--nv-radius-full);
    cursor: pointer;
}

.nv-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.nv-user-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--nv-dark);
}

.dropdown-caret {
    font-size: 11px;
    color: var(--nv-muted);
}

.nv-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 230px;
    background: #FFFFFF;
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-md);
    box-shadow: var(--nv-shadow-lg);
    padding: 8px 0;
    z-index: 110;
}

.nv-user-menu-wrap:hover .nv-user-dropdown {
    display: block;
}

.nv-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 14.5px;
    color: var(--nv-dark);
}

.nv-user-dropdown a:hover {
    background: var(--nv-bg);
    color: var(--nv-primary);
}

.nv-user-dropdown hr {
    border: none;
    border-top: 1px solid var(--nv-border);
    margin: 6px 0;
}

/* Notification Bell Dropdown */
.nv-notifications-bell-wrap {
    position: relative;
}

.nv-bell-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.15s ease;
}

.nv-bell-btn:hover {
    background: #F1F5F9;
}

.nv-badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nv-notifications-dropdown {
    display: none;
    position: absolute;
    right: -60px;
    top: 100%;
    margin-top: 12px;
    width: 360px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    overflow: hidden;
}

.nv-notifications-dropdown.is-open {
    display: block;
    animation: nvFadeInDown 0.18s ease-out;
}

.nv-notif-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.nv-notif-head h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nv-dark, #1E1B18);
    margin: 0;
}

.nv-notif-head button {
    background: none;
    border: none;
    color: var(--nv-primary, #8B1E3F);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.nv-notif-head button:hover {
    text-decoration: underline;
}

.nv-notif-list {
    max-height: 360px;
    overflow-y: auto;
}

.nv-notif-list::-webkit-scrollbar {
    width: 5px;
}

.nv-notif-list::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid #F1F5F9;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    position: relative;
}

.notif-item:hover {
    background: #F8FAFC;
}

.notif-item.unread {
    background: #FFFBEB;
}

.notif-icon-bubble {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.notif-content-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.notif-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
}

.notif-title {
    font-size: 13px;
    font-weight: 600;
    color: #0F172A;
}

.notif-time {
    font-size: 11px;
    color: #94A3B8;
    margin-left: 6px;
    flex-shrink: 0;
}

.notif-desc {
    font-size: 12px;
    color: #64748B;
    margin: 0;
    line-height: 1.4;
}

.notif-unread-dot {
    width: 8px;
    height: 8px;
    background: var(--nv-primary, #8B1E3F);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Buttons */
.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--nv-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--nv-transition);
    text-decoration: none;
    white-space: nowrap;
}

.nv-btn-primary {
    background-color: var(--nv-primary);
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.25);
}

.nv-btn-primary:hover {
    background-color: var(--nv-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 0, 0, 0.35);
}

.nv-btn-register-cta {
    background: linear-gradient(135deg, var(--nv-primary) 0%, #B31B1B 100%);
    color: #FFFFFF !important;
    padding: 11px 26px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    box-shadow: 0 4px 14px rgba(139, 0, 0, 0.25);
}

.nv-btn-gold {
    background-color: var(--nv-secondary);
    color: #1F2937 !important;
    font-weight: 700;
}

.nv-btn-gold:hover {
    background-color: var(--nv-secondary-light);
}

.nv-btn-outline-primary {
    border-color: var(--nv-primary);
    color: var(--nv-primary) !important;
    background: transparent;
}

.nv-btn-outline-primary:hover {
    background: var(--nv-primary);
    color: #FFFFFF !important;
}

.nv-btn-outline-gold {
    border-color: var(--nv-secondary);
    color: var(--nv-dark) !important;
    background: transparent;
}

.nv-btn-outline-gold:hover {
    background: var(--nv-cream);
    border-color: var(--nv-primary);
}

.nv-btn-large {
    padding: 15px 36px;
    font-size: 17.5px;
}

.nv-btn-small {
    padding: 7px 16px;
    font-size: 13.5px;
}

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

.nv-btn-disabled {
    background: var(--nv-border);
    color: var(--nv-muted) !important;
    cursor: not-allowed;
}

/* ==========================================
 * HERO SECTION WITH ROLLING BACKGROUND SLIDER
 * ========================================== */
.nv-hero-section {
    position: relative;
    padding: 36px 0 42px 0;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.nv-hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.nv-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 8s linear;
    z-index: 1;
}

.nv-hero-slide.nv-slide-active {
    opacity: 1;
    transform: scale(1.08);
    z-index: 2;
}

.nv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(20, 6, 6, 0.88) 0%, 
        rgba(45, 12, 12, 0.80) 45%, 
        rgba(26, 8, 8, 0.84) 75%,
        rgba(15, 5, 5, 0.90) 100%
    );
    z-index: 3;
}

.nv-hero-indicators {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--nv-secondary);
    width: 28px;
    border-radius: 10px;
    border-color: var(--nv-secondary-light);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}

.nv-hero-container-relative {
    position: relative;
    z-index: 4;
}

.nv-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 420px;
    gap: 36px;
    align-items: center;
}

.nv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    color: #FFDF78;
    border: 1px solid rgba(255, 223, 120, 0.5);
    padding: 6px 16px;
    border-radius: var(--nv-radius-full);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nv-hero-title {
    font-size: 42px;
    line-height: 1.16;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}

.nv-nepali-subheading {
    display: block;
    color: #FFD700;
    font-family: var(--nv-font-nepali);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-top: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.nv-hero-desc {
    font-size: 15.5px;
    color: #F8FAFC;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 580px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.nv-hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--nv-radius-full);
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #FFFFFF;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Quick Match Finder Card */
.nv-quick-search-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    border: 2px solid var(--nv-border-gold);
    position: relative;
}

.nv-search-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #F1F5F9;
}

.card-header-icon {
    font-size: 24px;
}

.nv-search-card-header h2 {
    font-size: 17px;
    color: var(--nv-primary);
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.nv-search-card-header p {
    font-size: 11.5px;
    color: var(--nv-muted);
    margin: 0;
}

.nv-form-group {
    margin-bottom: 9px;
}

.nv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.nv-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 3px;
    letter-spacing: 0.4px;
}

.nv-select, .nv-input, .nv-textarea {
    width: 100%;
    padding: 6px 10px;
    height: 36px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    background: #FFFFFF;
    color: #1E293B;
    transition: all 0.2s ease;
}

.nv-select:focus, .nv-input:focus, .nv-textarea:focus {
    outline: none;
    border-color: var(--nv-primary);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.12);
}

.nv-radio-toggle-group {
    display: flex;
    gap: 8px;
}

.nv-radio-btn {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.nv-radio-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nv-radio-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.nv-radio-btn:hover span {
    border-color: var(--nv-primary);
    background: #FFF5F7;
}

.nv-radio-btn input:checked + span {
    background: linear-gradient(135deg, #8B1E3F, #A02347) !important;
    color: #FFFFFF !important;
    border-color: #8B1E3F !important;
    box-shadow: 0 3px 10px rgba(139, 30, 63, 0.28) !important;
    font-weight: 700 !important;
    transform: translateY(-1px);
}

/* Prominent Find Matches Button */
.nv-hero-search-btn {
    width: 100%;
    padding: 10px 18px;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    background: linear-gradient(135deg, #C9A227 0%, #E2B93B 50%, #B8901E 100%);
    color: #1E1B18 !important;
    border: 1px solid #F3CF55;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nv-hero-search-btn:hover {
    background: linear-gradient(135deg, #B8901E 0%, #D4AF37 50%, #A27B13 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.5);
    color: #000000 !important;
}

/* Stats Counter Strip */
.nv-stats-strip {
    background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-primary-dark) 100%);
    color: #FFFFFF;
    padding: 30px 0;
}

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

.nv-stat-item .stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}

.nv-stat-item .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--nv-secondary);
}

.nv-stat-item .stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

/* Section Common */
.nv-section {
    padding: 70px 0;
}

.nv-section-header {
    margin-bottom: 40px;
}

.nv-section-badge {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nv-secondary-dark);
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.nv-section-title {
    font-size: 34px;
    color: var(--nv-dark);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.nv-section-subtitle {
    font-size: 16px;
    color: var(--nv-muted);
    line-height: 1.6;
}

.text-center { text-align: center; }

/* Profiles Grid & Card */
.nv-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.nv-profile-card {
    background: #FFFFFF;
    border-radius: var(--nv-radius-md);
    border: 1px solid var(--nv-border);
    overflow: hidden;
    box-shadow: var(--nv-shadow-sm);
    transition: var(--nv-transition);
    display: flex;
    flex-direction: column;
}

.nv-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nv-shadow-md);
    border-color: var(--nv-border-gold);
}

.card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #FAFAFA;
    border-bottom: 1px solid var(--nv-border);
}

.badge-connected {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.badge-verified {
    background: #DEF7EC;
    color: #03543F;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-premium {
    background: #FEF3C7;
    color: #92400E;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.nv-btn-connected {
    background: #10B981 !important;
    color: #FFFFFF !important;
    border: 1px solid #059669 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.nv-btn-connected:hover {
    background: #059669 !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
}

.btn-shortlist-heart {
    background: none;
    border: none;
    font-size: 20px;
    color: #D1D5DB;
    cursor: pointer;
}

.btn-shortlist-heart.is-active, .btn-shortlist-heart:hover {
    color: #EF4444;
}

.card-avatar-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 16px 10px 16px;
    background: linear-gradient(180deg, #FBF8F3 0%, #FFFFFF 100%);
}

.avatar-circle-link {
    display: block;
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3.5px solid var(--nv-secondary);
    background: #F3F4F6;
}

.card-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.avatar-circle-link:hover .card-avatar-img {
    transform: scale(1.06);
}

/* Blur & Lock Overlay for Public Guests */
.nv-avatar-blurred {
    filter: blur(14px) brightness(0.85);
    transform: scale(1.1);
}

.nv-avatar-guest-lock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.35);
    border-radius: 50%;
    z-index: 2;
    padding: 10px;
    text-align: center;
    pointer-events: none;
}

.nv-avatar-guest-lock span {
    background: rgba(15, 23, 42, 0.88);
    color: #FFDF78;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: var(--nv-radius-full);
    border: 1px solid rgba(255, 223, 120, 0.55);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Single Profile Hero Circular Avatar */
.primary-photo-wrap.circle-primary-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--nv-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    background: #FFFFFF;
}

.primary-photo-wrap.circle-primary-photo .main-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-privacy-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    color: #FFFFFF;
    z-index: 3;
}

.photo-privacy-locked-overlay .lock-icon {
    font-size: 22px;
    margin-bottom: 3px;
}

.photo-privacy-locked-overlay h4 {
    font-size: 13px;
    font-weight: 700;
    color: #FFDF78;
    margin: 0 0 2px 0;
}

.photo-privacy-locked-overlay p {
    font-size: 11px;
    margin: 0;
    color: #E2E8F0;
    line-height: 1.3;
}

.compatibility-pill {
    position: absolute;
    bottom: 8px;
    right: 20px;
    background: rgba(31, 41, 55, 0.9);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: var(--nv-radius-full);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    z-index: 4;
}

.compatibility-pill .score-num {
    color: var(--nv-secondary);
    font-weight: 700;
}

.card-body {
    padding: 16px;
    flex-grow: 1;
}

.card-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-meta-line {
    font-size: 13.5px;
    color: var(--nv-muted);
    margin-bottom: 10px;
}

.card-details-list p {
    font-size: 13.5px;
    color: #4B5563;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--nv-border);
    display: flex;
    gap: 10px;
    background: #FAFAFA;
}

.card-footer .nv-btn {
    flex: 1;
}

/* How It Works Steps */
.nv-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nv-step-card {
    background: #FFFFFF;
    border-radius: var(--nv-radius-md);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--nv-border-gold);
    position: relative;
    box-shadow: var(--nv-shadow-sm);
}

.nv-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--nv-primary);
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(139, 0, 0, 0.3);
}

.nv-step-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.nv-step-card h3 {
    font-size: 19px;
    color: var(--nv-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.nv-step-card p {
    font-size: 15px;
    color: var(--nv-muted);
    line-height: 1.65;
}

/* Communities Pill Grid */
.nv-community-tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.nv-community-pill {
    background: #FFFFFF;
    border: 1.5px solid var(--nv-border-gold);
    border-radius: var(--nv-radius-sm);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--nv-dark);
    transition: var(--nv-transition);
}

.nv-community-pill:hover {
    background: var(--nv-cream);
    border-color: var(--nv-primary);
    color: var(--nv-primary);
}

/* Safety Banner */
.nv-safety-banner {
    background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-primary-dark) 100%);
    color: #FFFFFF;
    border-radius: var(--nv-radius-lg);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.badge-gold {
    background: var(--nv-secondary);
    color: var(--nv-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--nv-radius-full);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nv-safety-banner h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800;
}

.nv-safety-banner p {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 20px;
}

.safety-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
}

.safety-shield-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--nv-radius-md);
    padding: 34px 20px;
}

.big-shield {
    font-size: 54px;
    display: block;
    margin-bottom: 10px;
}

/* CTA Banner */
.nv-cta-card {
    background: var(--nv-cream);
    border: 2px solid var(--nv-secondary);
    border-radius: var(--nv-radius-lg);
    padding: 48px 30px;
    text-align: center;
}

.nv-cta-card h2 {
    font-size: 32px;
    color: var(--nv-primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.nv-cta-card p {
    font-size: 16.5px;
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ==========================================
 * AUTH PAGES (MODERN MINIMAL SIGN UP & LOGIN)
 * ========================================== */
.nv-auth-page {
    padding: 48px 0 80px 0;
    background: linear-gradient(180deg, #FBF8F5 0%, #F5EFEB 100%);
    min-height: calc(100vh - 200px);
}

.nv-auth-card-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;
}

.nv-auth-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1.5px solid rgba(212, 160, 23, 0.35);
    box-shadow: 0 12px 36px rgba(139, 30, 63, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.auth-header {
    margin-bottom: 26px;
}

.auth-header .auth-icon {
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #FFF7EB 0%, #FDF2E0 100%);
    border: 1.5px solid var(--nv-border-gold);
    border-radius: 50%;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.18);
}

.auth-title {
    font-size: 26px;
    color: var(--nv-primary);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.auth-subtitle {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 520px;
}

/* Form Groups & Typography */
.nv-form-group {
    margin-bottom: 18px;
}

.nv-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.nv-label-icon {
    font-size: 14px;
}

.nv-label .required {
    color: #DC2626;
    margin-left: 2px;
}

.nv-input,
.nv-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14.5px;
    font-family: inherit;
    color: #1E293B;
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.nv-input:focus,
.nv-select:focus {
    outline: none;
    border-color: var(--nv-primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3.5px rgba(139, 30, 63, 0.12);
}

.nv-input::placeholder {
    color: #94A3B8;
}

/* Addon prefix for phone */
.nv-input-addon-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

.nv-input-prefix {
    position: absolute;
    left: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    padding: 4px 8px;
    border-radius: 6px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.nv-input-with-prefix {
    padding-left: 92px !important;
}

/* Password eye toggle */
.nv-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nv-password-wrap .nv-input {
    padding-right: 44px;
}

.nv-toggle-password-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.65;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-toggle-password-btn:hover {
    opacity: 1;
}

/* Gender toggle pills */
.nv-radio-toggle-group {
    display: flex;
    gap: 10px;
}

.nv-radio-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    user-select: none;
}

.nv-radio-btn:hover {
    border-color: var(--nv-secondary);
    background: #FFFDF9;
}

.nv-radio-btn input[type="radio"] {
    accent-color: var(--nv-primary);
    margin: 0;
    cursor: pointer;
}

.nv-radio-btn:has(input[type="radio"]:checked) {
    border-color: var(--nv-primary);
    background: #FFF5F7;
    color: var(--nv-primary);
    box-shadow: 0 2px 6px rgba(139, 30, 63, 0.1);
}

/* Checkbox Label */
.nv-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.nv-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--nv-primary);
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/* CTA Buttons */
.nv-btn-register-cta,
.nv-btn-primary {
    background: linear-gradient(135deg, #8B1E3F 0%, #6E142F 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(139, 30, 63, 0.32);
    transition: all 0.22s ease;
    text-decoration: none;
}

.nv-btn-register-cta:hover,
.nv-btn-primary:hover {
    background: linear-gradient(135deg, #A02349 0%, #8B1E3F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 63, 0.42);
}

.nv-btn-register-cta:active,
.nv-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(139, 30, 63, 0.2);
}

/* Auth Divider */
.nv-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 20px 0;
    color: #94A3B8;
}

.nv-auth-divider::before,
.nv-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E2E8F0;
}

.nv-auth-divider span {
    padding: 0 14px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #64748B;
}

/* Social Buttons Stack */
.nv-social-auth-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nv-social-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.nv-btn-google-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: #FFFFFF;
    color: #374151 !important;
    border: 1.5px solid #CBD5E1;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
}

.nv-btn-google-auth:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
    color: #0F172A !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nv-btn-facebook-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: #1877F2;
    color: #FFFFFF !important;
    border: 1.5px solid #1877F2;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(24, 119, 242, 0.24);
    transition: all 0.2s ease;
    text-decoration: none;
}

.nv-btn-facebook-auth:hover {
    background: #0D65D9;
    border-color: #0D65D9;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.36);
}

.nv-gsi-container {
    display: none;
}

/* Demo box */
.nv-demo-credentials-box {
    margin-top: 22px;
    padding: 14px 18px;
    background: #FFFDF9;
    border: 1.5px dashed rgba(212, 160, 23, 0.45);
    border-radius: 10px;
    font-size: 13px;
}

.nv-demo-title {
    font-weight: 700;
    color: var(--nv-primary);
    margin-bottom: 6px;
}

.nv-demo-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #475569;
}

.nv-demo-items code {
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #0F172A;
}

/* Auth Footer */
.auth-footer {
    margin-top: 24px;
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
}

.auth-footer-main {
    font-size: 15px;
    color: #475569;
    margin-bottom: 8px;
}

.auth-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748B;
    margin-top: 10px;
}

@media (max-width: 640px) {
    .nv-auth-page {
        padding: 24px 0 48px 0;
    }
    .nv-auth-card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    .auth-title {
        font-size: 22px;
    }
    .nv-form-row {
        flex-direction: column;
        gap: 0;
    }
    .nv-radio-toggle-group {
        flex-direction: column;
    }
}

.nv-register-steps-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--nv-muted);
    font-size: 13.5px;
    font-weight: 600;
}

.step-indicator .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nv-border);
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: var(--nv-transition);
}

.step-indicator.active {
    color: var(--nv-primary);
}

.step-indicator.active .step-num {
    background: var(--nv-primary);
    color: #FFFFFF;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--nv-border);
    margin: 0 12px 18px 12px;
}

.form-group-block {
    background: #FAFAFA;
    border: 1px solid var(--nv-border);
    border-radius: var(--nv-radius-sm);
    padding: 24px;
    margin-bottom: 20px;
}

.block-title {
    font-size: 16.5px;
    color: var(--nv-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.nv-radio-toggle-group {
    display: flex;
    gap: 12px;
}

.nv-radio-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1.5px solid var(--nv-border);
    border-radius: var(--nv-radius-sm);
    background: #FAFAFA;
    cursor: pointer;
    transition: var(--nv-transition);
    font-size: 14.5px;
    font-weight: 600;
}

.nv-radio-btn:hover {
    border-color: var(--nv-secondary);
    background: #FFFDF9;
}

.nv-radio-btn input[type="radio"] {
    accent-color: var(--nv-primary);
}

.nv-radio-btn input[type="radio"]:checked + span {
    color: var(--nv-primary);
    font-weight: 700;
}

.nv-btn-register-cta {
    background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-primary-dark) 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.28);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    border-radius: var(--nv-radius-sm);
}

.nv-btn-register-cta:hover {
    background: linear-gradient(135deg, var(--nv-primary-light) 0%, var(--nv-primary) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.38);
}

.nv-profile-guest-gated-box {
    transition: transform 0.2s ease;
}

.nv-profile-guest-gated-box:hover {
    transform: translateY(-2px);
}

.nv-alert {
    padding: 14px 18px;
    border-radius: var(--nv-radius-sm);
    font-size: 14.5px;
    margin-bottom: 18px;
}

.nv-alert-success {
    background: #DEF7EC;
    color: #03543F;
    border: 1px solid #BCF0DA;
}

.nv-alert-danger {
    background: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #FBD5D5;
}

.nv-link-gold {
    color: var(--nv-secondary-dark);
    font-weight: 600;
}

.nv-link-gold:hover {
    color: var(--nv-primary);
    text-decoration: underline;
}

.font-bold { font-weight: 700; }

/* Pricing Page & Cards */
.nv-pricing-page {
    padding: 50px 0 80px 0;
}

.nv-pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.nv-plan-card {
    background: #FFFFFF;
    border: 1.5px solid var(--nv-border);
    border-radius: var(--nv-radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--nv-shadow-sm);
    display: flex;
    flex-direction: column;
}

.nv-plan-card.is-featured {
    border: 2.5px solid var(--nv-secondary);
    box-shadow: var(--nv-shadow-md);
}

.popular-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nv-secondary);
    color: var(--nv-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--nv-radius-full);
    text-transform: uppercase;
}

.plan-title {
    font-size: 20px;
    color: var(--nv-primary);
    margin-bottom: 14px;
    font-weight: 800;
}

.plan-price {
    margin-bottom: 22px;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--nv-dark);
}

.plan-perks {
    list-style: none;
    text-align: left;
    margin-bottom: 26px;
    flex-grow: 1;
    font-size: 14.5px;
}

.plan-perks li {
    margin-bottom: 12px;
    color: #4B5563;
}

/* Footer */
.site-footer {
    background-color: #1F2937;
    color: #E5E7EB;
    padding: 60px 0 24px 0;
}

.nv-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 36px;
}

.nv-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.nv-footer-brand .nv-brand-name {
    color: #FFFFFF;
}

.nv-footer-desc {
    font-size: 14.5px;
    color: #9CA3AF;
    line-height: 1.65;
}

.nv-footer-heading {
    font-size: 16.5px;
    color: #FFFFFF;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.nv-footer-links li {
    margin-bottom: 10px;
}

.nv-footer-links a {
    color: #9CA3AF;
    font-size: 14.5px;
}

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

.nv-payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.pay-logo {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.pay-logo.esewa { background: #60BB46; color: #FFFFFF; }
.pay-logo.khalti { background: #5C2D91; color: #FFFFFF; }
.pay-logo.imepay { background: #ED1C24; color: #FFFFFF; }
.pay-logo.fonepay { background: #C8102E; color: #FFFFFF; }

.nv-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 13.5px;
    color: #9CA3AF;
}

/* Modals */
.nv-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nv-modal-box {
    background: #FFFFFF;
    border-radius: var(--nv-radius-md);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: var(--nv-shadow-lg);
    border: 1.5px solid var(--nv-border-gold);
}

.nv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--nv-bg);
    border-bottom: 1px solid var(--nv-border);
}

.nv-modal-header h3 {
    margin: 0;
    font-size: 16px;
    color: var(--nv-primary);
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--nv-muted);
}

.nv-modal-body {
    padding: 20px;
}

.nv-modal-footer {
    padding: 12px 20px;
    background: #FAFAFA;
    border-top: 1px solid var(--nv-border);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ==========================================================================
 * SEARCH PROFILES PAGE (2-COLUMN MODERN LAYOUT)
 * ========================================================================== */

/* Top Hero Header with Symbolic Visuals */
.nv-search-header-hero {
    background: linear-gradient(135deg, #380C14 0%, #681527 50%, #8B1E3F 100%);
    padding: 34px 0 38px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    border-bottom: 2px solid var(--nv-secondary, #C9A227);
    box-shadow: inset 0 -10px 25px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.nv-search-header-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nv-search-header-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0) 75%);
    border-radius: 50%;
    pointer-events: none;
}

.nv-search-header-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nv-search-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 223, 120, 0.55);
    color: #FFDF78;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--nv-radius-full);
    margin-bottom: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nv-search-badge .badge-icon {
    font-size: 15px;
}

.nv-search-title {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nv-search-description {
    font-size: 15px;
    color: #F8FAFC;
    line-height: 1.5;
    margin: 0 0 14px 0;
    max-width: 620px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nv-search-trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.nv-search-trust-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--nv-radius-full);
    backdrop-filter: blur(4px);
}

/* 2-Column Search Layout Grid */
.nv-search-layout-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 28px;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* Left Sidebar Search Filters Card */
.nv-search-sidebar-wrapper {
    position: sticky;
    top: 96px;
    z-index: 10;
}

.nv-search-filters-sidebar {
    background: #FFFFFF;
    border-radius: 14px;
    border: 1.5px solid #E2E8F0;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nv-search-filters-sidebar .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1.5px solid #F1F5F9;
}

.filters-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters-header-title .filter-icon {
    font-size: 18px;
}

.nv-search-filters-sidebar .filters-header h3 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1E293B;
    margin: 0;
}

.btn-reset-filters {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #64748B;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset-filters:hover {
    background: #FFE4E6;
    color: #8B1E3F;
    border-color: #FDA4AF;
}

.nv-filters-form .filter-group {
    margin-bottom: 18px;
}

.nv-filters-form .filter-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

/* Looking For Gender Pills */
.filter-gender-toggle {
    display: flex;
    gap: 6px;
    background: #F8FAFC;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.gender-pill-opt {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.gender-pill-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gender-pill-opt span {
    display: block;
    padding: 7px 4px;
    font-size: 12px;
    font-weight: 700;
    color: #64748B;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.gender-pill-opt input[type="radio"]:checked + span {
    background: #8B1E3F;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(139, 30, 63, 0.25);
}

/* Age Range Inputs */
.filter-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-select-wrap {
    flex: 1;
}

.range-select-wrap select {
    width: 100%;
    height: 38px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    background: #FFFFFF;
    color: #1E293B;
}

.range-separator {
    font-size: 12px;
    font-weight: 700;
    color: #94A3B8;
}

/* Province & Religion in Single Row */
.filter-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: flex-start;
}

.filter-row-2col .filter-group {
    margin-bottom: 18px;
}

.nv-filters-form select.nv-select {
    width: 100%;
    height: 38px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    background: #FFFFFF;
    color: #1E293B;
}

.nv-filters-form select.nv-select:focus,
.range-select-wrap select:focus {
    border-color: #8B1E3F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

/* Checkboxes */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    margin: 0;
}

.filter-checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #8B1E3F;
    cursor: pointer;
}

/* Apply Filters Button */
.btn-apply-filters {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B1E3F 0%, #A02347 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 30, 63, 0.25);
    transition: all 0.25s ease;
    margin-top: 8px;
}

.btn-apply-filters:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 30, 63, 0.35);
    background: linear-gradient(135deg, #70162A 0%, #8B1E3F 100%);
}

/* Right Search Results Column */
.nv-search-results-col {
    min-width: 0;
}

/* Results Control Bar */
.nv-results-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.results-count-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.results-count-wrap .count-number {
    font-size: 17px;
    font-weight: 800;
    color: #8B1E3F;
}

.results-count-wrap .count-label {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
}

.results-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-sort-wrap label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
}

.nv-sort-dropdown {
    height: 36px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: 1.5px solid #CBD5E1;
    background: #FFFFFF;
    color: #1E293B;
    cursor: pointer;
}

.nv-sort-dropdown:focus {
    border-color: #8B1E3F;
    outline: none;
}

/* Right-side Profiles Grid */
.nv-search-results-col .nv-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Pagination Container & Buttons */
.nv-pagination-wrap {
    margin-top: 32px;
    margin-bottom: 20px;
}

.nv-pagination-numbers {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.page-num-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    border: 1.5px solid #CBD5E1;
    background: #FFFFFF;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-num-btn:hover {
    border-color: #8B1E3F;
    color: #8B1E3F;
    background: #FFF5F7;
    transform: translateY(-1px);
}

.page-num-btn.active {
    background: #8B1E3F;
    color: #FFFFFF;
    border-color: #8B1E3F;
    box-shadow: 0 3px 8px rgba(139, 30, 63, 0.3);
}

@media (max-width: 1200px) {
    .nv-search-results-col .nv-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nv-search-layout-grid {
        grid-template-columns: 1fr;
    }
    .nv-search-sidebar-wrapper {
        position: static;
    }
    .nv-hero-grid { grid-template-columns: 1fr; }
    .nv-footer-grid { grid-template-columns: 1fr 1fr; }
    .nv-steps-grid { grid-template-columns: 1fr; }
    .nv-safety-banner { grid-template-columns: 1fr; }
    .nv-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-navigation { display: none; }
    .nv-footer-grid { grid-template-columns: 1fr; }
    .nv-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nv-search-results-col .nv-profiles-grid {
        grid-template-columns: 1fr;
    }
    .nv-results-control-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   TERMS & CONDITIONS (LEGAL) PAGE
   ========================================================================== */
.nv-legal-page {
    background: #F8FAFC;
    padding-bottom: 70px;
}

.nv-legal-hero {
    background: linear-gradient(135deg, #4A0E17 0%, #8B1E3F 100%);
    color: #FFFFFF;
    padding: 55px 0 45px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nv-legal-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #D4AF37;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.nv-legal-title {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.nv-legal-subtitle {
    font-size: 16px;
    color: #F1F5F9;
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.nv-legal-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.nv-legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: flex-start;
}

.nv-legal-sidebar {
    position: sticky;
    top: 90px;
}

.nv-toc-card {
    background: #FFFFFF;
    border: 1px solid var(--nv-border);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nv-toc-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--nv-primary);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #F1F5F9;
}

.nv-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 520px;
    overflow-y: auto;
}

.nv-toc-list li {
    margin-bottom: 8px;
}

.nv-toc-list a {
    display: block;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.nv-toc-list a:hover {
    background: #FFF5F7;
    color: var(--nv-primary);
    font-weight: 600;
    padding-left: 12px;
}

.nv-legal-content {
    background: #FFFFFF;
    border: 1px solid var(--nv-border);
    border-radius: 14px;
    padding: 40px 45px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    line-height: 1.75;
    color: #334155;
}

.nv-legal-intro-box {
    background: #FFF9FA;
    border: 1px solid #FFE4E8;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 35px;
    font-size: 15px;
}

.nv-legal-intro-box p:last-child {
    margin-bottom: 0;
}

.nv-legal-section {
    padding-top: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 24px;
    scroll-margin-top: 100px;
}

.nv-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nv-legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--nv-primary);
    margin: 0 0 12px;
}

.nv-legal-section p {
    font-size: 14.5px;
    margin: 0 0 12px;
}

.nv-legal-section ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.nv-legal-section li {
    font-size: 14.5px;
    margin-bottom: 8px;
}

/* ==========================================================================
   FREQUENTLY ASKED QUESTIONS (FAQ) PAGE
   ========================================================================== */
.nv-faq-page {
    background: #F8FAFC;
    padding-bottom: 75px;
}

.nv-faq-hero {
    background: linear-gradient(135deg, #3B0D14 0%, #8B1E3F 100%);
    color: #FFFFFF;
    padding: 55px 0 45px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nv-faq-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #D4AF37;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.nv-faq-title {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.nv-faq-subtitle {
    font-size: 16px;
    color: #F1F5F9;
    max-width: 660px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.nv-faq-search-wrap {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
}

.nv-faq-search-wrap input {
    width: 100%;
    height: 50px;
    padding: 12px 20px 12px 48px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: #FFFFFF;
    font-size: 15px;
    color: #1E293B;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.2s ease;
}

.nv-faq-search-wrap input:focus {
    border-color: #D4AF37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.nv-faq-search-wrap .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
}

.nv-faq-layout {
    max-width: 920px;
    margin: 0 auto;
}

.nv-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: center;
}

.faq-tab-btn {
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    color: #475569;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-tab-btn:hover {
    border-color: var(--nv-primary);
    color: var(--nv-primary);
    background: #FFF5F7;
}

.faq-tab-btn.active {
    background: var(--nv-primary);
    color: #FFFFFF;
    border-color: var(--nv-primary);
    box-shadow: 0 3px 8px rgba(139, 30, 63, 0.25);
}

.nv-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 45px;
}

.nv-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.2s ease;
}

.nv-faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.nv-faq-item[open] {
    border-color: #FBCFE8;
    box-shadow: 0 4px 14px rgba(139, 30, 63, 0.06);
}

.nv-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.nv-faq-question::-webkit-details-marker {
    display: none;
}

.faq-q-text {
    flex: 1;
    padding-right: 12px;
}

.faq-q-badge {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 12px;
    white-space: nowrap;
}

.faq-icon-chevron {
    font-size: 18px;
    color: var(--nv-primary);
    transition: transform 0.2s ease;
}

.nv-faq-item[open] .faq-icon-chevron {
    transform: rotate(180deg);
}

.nv-faq-answer {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #F8FAFC;
}

.nv-faq-answer p {
    margin: 0;
    padding-top: 12px;
}

.nv-faq-answer a {
    color: var(--nv-primary);
    font-weight: 600;
    text-decoration: underline;
}

.nv-faq-support-box {
    background: linear-gradient(135deg, #FFF9FA 0%, #FFF1F3 100%);
    border: 1.5px dashed #F43F5E;
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.support-icon {
    font-size: 38px;
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--nv-primary);
    margin: 0 0 6px;
}

.support-text p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .nv-legal-layout {
        grid-template-columns: 1fr;
    }
    .nv-legal-sidebar {
        position: static;
    }
    .nv-legal-content {
        padding: 24px 20px;
    }
    .nv-faq-support-box {
        flex-direction: column;
        text-align: center;
    }
    .support-actions {
        justify-content: center;
    }
}

/* ==========================================================================
   MATRIMONIAL PROFILE V2 REDESIGN (MATCHING EXACT IMAGE 2 SPECIFICATIONS)
   ========================================================================== */
.nv-profile-v2 {
    background-color: #F8FAFC;
    padding-top: 24px;
    padding-bottom: 70px;
}

.nv-breadcrumb-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #64748B;
    margin-bottom: 20px;
}

.nv-breadcrumb-v2 a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nv-breadcrumb-v2 a:hover {
    color: #8B1E3F;
}

.nv-breadcrumb-v2 .sep {
    color: #94A3B8;
}

.nv-breadcrumb-v2 .current {
    color: #1E293B;
    font-weight: 600;
}

/* TOP HERO HEADER CARD */
.nv-profile-hero-card-v2 {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 190px 1fr 220px;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Left Avatar Column */
.hero-v2-avatar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatar-circle-frame {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #F1F5F9;
}

.avatar-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.hero-online-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.status-dot-green {
    font-size: 10px;
}

/* Middle Info Column */
.hero-v2-info-col {
    display: flex;
    flex-direction: column;
}

.hero-code-row {
    margin-bottom: 6px;
}

.hero-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-size: 12.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.hero-code-badge:hover {
    background: #F1F5F9;
    color: #8B1E3F;
    border-color: #CBD5E1;
}

.hero-profile-name {
    font-size: 28px;
    font-weight: 800;
    color: #1E293B;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}

.verified-check-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #10B981;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.hero-meta-row {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.5;
}

.hero-meta-demographics strong {
    color: #1E293B;
    font-weight: 700;
}

.hero-meta-culture {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.hero-meta-status {
    font-size: 13.5px;
    color: #64748B;
    margin-top: 4px;
    margin-bottom: 18px;
}

.pill-connected {
    color: #059669;
    font-weight: 700;
}

.pill-pending {
    color: #D97706;
    font-weight: 700;
}

.pill-active-time {
    color: #64748B;
}

.hero-meta-row .bullet {
    color: #CBD5E1;
    margin: 0 2px;
}

/* Match Score & Partner Quote Grid */
.hero-match-quote-grid {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 16px;
    margin-top: 6px;
}

.hero-match-card {
    background: #FAFAFA;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-match-card .score-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 2px;
}

.hero-match-card .score-number {
    font-size: 30px;
    font-weight: 800;
    color: #8B1E3F;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-match-card .score-tag {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-quote-card {
    background: #FFF5F6;
    border: 1px solid #FFE4E8;
    border-radius: 12px;
    padding: 16px 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-quote-card .quote-mark {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 38px;
    font-family: Georgia, serif;
    color: #F43F5E;
    opacity: 0.35;
    line-height: 1;
    pointer-events: none;
}

.hero-quote-card .quote-body-text {
    font-size: 13.5px;
    color: #4C1D24;
    font-style: italic;
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

/* Right Actions Column */
.hero-v2-actions-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.nv-hero-btn {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nv-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-chat-crimson {
    background: #8B1E3F !important;
    color: #FFFFFF !important;
    border-color: #731834 !important;
}

.btn-chat-crimson:hover {
    background: #731834 !important;
}

.btn-voice-green {
    background: #16A34A !important;
    color: #FFFFFF !important;
    border-color: #15803D !important;
}

.btn-voice-green:hover {
    background: #15803D !important;
}

.btn-video-slate {
    background: #1E293B !important;
    color: #FFFFFF !important;
    border-color: #0F172A !important;
}

.btn-video-slate:hover {
    background: #0F172A !important;
}

.btn-outline-shortlist {
    background: #FFFFFF !important;
    color: #334155 !important;
    border-color: #CBD5E1 !important;
}

.btn-outline-shortlist:hover, .btn-outline-shortlist.is-active {
    background: #FFF1F2 !important;
    color: #E11D48 !important;
    border-color: #FDA4AF !important;
}

.btn-outline-report {
    background: #FFFFFF !important;
    color: #64748B !important;
    border-color: #E2E8F0 !important;
}

.btn-outline-report:hover {
    background: #FEF2F2 !important;
    color: #DC2626 !important;
    border-color: #FECACA !important;
}

.btn-register-gold {
    background: #D4AF37 !important;
    color: #1E1B18 !important;
    border-color: #C9A227 !important;
}

.btn-disabled-gray {
    background: #F1F5F9 !important;
    color: #94A3B8 !important;
    border-color: #E2E8F0 !important;
    cursor: default;
}

/* MAIN 2-COLUMN GRID BODY */
.nv-profile-layout-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: flex-start;
}

/* Left Column Cards */
.nv-profile-main-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.nv-card-v2 {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    padding: 24px 28px;
}

.nv-card-v2-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #F1F5F9;
}

.nv-card-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8B1E3F;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(139, 30, 63, 0.25);
}

.nv-card-v2-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.nv-card-v2-body .bio-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

/* 2-Column Key Value Grid */
.nv-kv-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.kv-col-left, .kv-col-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kv-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.kv-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
}

.kv-value {
    font-size: 14.5px;
    font-weight: 700;
    color: #1E293B;
}

/* Contact Privacy Card */
.nv-contact-privacy-card {
    background: #FFFBEB;
    border: 1.5px dashed #F59E0B;
    border-radius: 14px;
    padding: 22px 26px;
}

.contact-locked-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lock-icon-lg {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-locked-text .locked-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #92400E;
    margin: 0 0 4px;
}

.contact-locked-text .locked-sub {
    font-size: 13.5px;
    color: #78350F;
    margin: 0;
}

.contact-revealed-wrap {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 16px 20px;
}

.contact-revealed-title {
    font-size: 15px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 10px;
}

.contact-revealed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-entry strong {
    color: #166534;
    font-size: 13.5px;
}

.contact-entry span {
    color: #1E293B;
    font-size: 14.5px;
    font-weight: 600;
}

/* RIGHT COLUMN: Sidebar Cards */
.nv-profile-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nv-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    padding: 20px 22px;
}

.sidebar-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F1F5F9;
}

.sidebar-kv-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.sidebar-kv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
}

.sidebar-kv-row .lbl {
    color: #64748B;
    font-weight: 500;
}

.sidebar-kv-row .val {
    color: #1E293B;
    font-weight: 600;
}

.sidebar-kv-row .val.text-success {
    color: #10B981;
    font-weight: 700;
}

/* Completeness in Sidebar */
.sidebar-completeness-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sidebar-completeness-header .sidebar-card-title {
    margin: 0;
    padding: 0;
    border: none;
}

.completeness-pct-badge {
    background: #FFF1F2;
    color: #8B1E3F;
    font-size: 13px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 12px;
}

.completeness-track-wrap {
    width: 100%;
    height: 9px;
    background: #F1F5F9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.completeness-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B1E3F 0%, #D4AF37 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.completeness-subtext {
    font-size: 12px;
    color: #64748B;
    margin: 0 0 10px;
}

.sidebar-complete-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #8B1E3F;
    text-decoration: none;
}

.sidebar-complete-link:hover {
    text-decoration: underline;
}

/* Looking For List */
.looking-for-list .sidebar-kv-row {
    padding: 4px 0;
}

.looking-for-list .sidebar-kv-row .lbl {
    font-size: 13px;
    color: #475569;
}

.looking-for-list .sidebar-kv-row .val {
    font-size: 13.5px;
    color: #1E293B;
}

/* Safety & Trust */
.badge-tag-verified {
    background: #DEF7EC;
    color: #03543F;
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.sidebar-trust-seal {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    color: #059669;
}

/* ==========================================================================
   MOBILE HAMBURGER BUTTON & OFF-CANVAS DRAWER NAVIGATION
   ========================================================================== */

.nv-mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.2s ease;
    z-index: 101;
    -webkit-tap-highlight-color: transparent;
}

.nv-mobile-toggle-btn:hover {
    background: #F1F5F9;
    border-color: var(--nv-secondary, #C9A227);
}

.nv-mobile-toggle-btn .bar {
    width: 22px;
    height: 2.2px;
    background: #1E293B;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nv-mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nv-mobile-drawer-backdrop.nv-backdrop-open {
    opacity: 1;
    visibility: visible;
}

.nv-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: #FFFFFF;
    box-shadow: -6px 0 28px rgba(0, 0, 0, 0.16);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.nv-mobile-drawer.nv-drawer-open {
    transform: translateX(0);
}

.nv-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #E2E8F0;
    background: var(--nv-cream, #FCF9F4);
}

.nv-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--nv-primary, #8B1E3F);
    font-family: Georgia, serif;
}

.nv-drawer-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nv-drawer-close-btn:hover {
    background: #FEE2E2;
    color: #DC2626;
    border-color: #FCA5A5;
}

.nv-drawer-lang-wrap {
    padding: 12px 20px;
    background: #FFFFFF;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
}

.nv-drawer-nav {
    flex: 1;
    padding: 14px 0;
}

.nv-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv-drawer-menu li {
    list-style: none;
}

.nv-drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.nv-drawer-menu li a:hover,
.nv-drawer-menu li a:active {
    background: #FDF8E2;
    color: var(--nv-primary, #8B1E3F);
    border-left-color: var(--nv-primary, #8B1E3F);
}

.nv-drawer-footer {
    padding: 20px;
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
    margin-top: auto;
}

.nv-drawer-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px 14px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM & MEDIA QUERIES (320px - 1440px+)
   ========================================================================== */

/* Global Anti-Overflow & Responsive Reset */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Touch-Friendly Targets Standard */
button, input[type="button"], input[type="submit"], select, .nv-btn, a.nv-btn {
    min-height: 44px;
    touch-action: manipulation;
}

/* --------------------------------------------------------------------------
   1. MOBILE STICKY BOTTOM ACTION BAR (SINGLE PROFILE VIEW)
   -------------------------------------------------------------------------- */
.nv-profile-mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--nv-border-gold, #EAD8AC);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.09);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 990;
}

.sticky-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.btn-sticky-action {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 6px 10px;
    min-width: 52px;
    height: 46px;
    color: #475569;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-sticky-action .action-icon {
    font-size: 16px;
    line-height: 1;
}

.btn-sticky-action .action-text {
    font-size: 10.5px;
    font-weight: 600;
    margin-top: 2px;
    color: #475569;
}

.btn-sticky-action:hover,
.btn-sticky-action:active {
    background: #F1F5F9;
    color: var(--nv-primary, #8B0000);
}

.btn-sticky-shortlist.is-active {
    background: #FEF2F2;
    border-color: #FECACA;
}

.btn-sticky-shortlist.is-active .action-text {
    color: #DC2626;
}

.btn-sticky-voice {
    color: #059669;
    border-color: #A7F3D0;
    background: #ECFDF5;
}

.btn-sticky-voice .action-text {
    color: #059669;
}

.btn-sticky-video {
    color: #4F46E5;
    border-color: #C7D2FE;
    background: #EEF2FF;
}

.btn-sticky-video .action-text {
    color: #4F46E5;
}

.btn-sticky-main {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 3px 8px rgba(139, 0, 0, 0.2);
}

.btn-sticky-main.btn-chat-crimson {
    background: var(--nv-primary, #8B0000);
    color: #FFFFFF;
}

.btn-sticky-main.btn-register-gold {
    background: linear-gradient(135deg, #C9A227, #E0BA3E);
    color: #1F2937;
}

.btn-sticky-main.btn-disabled-gray {
    background: #E2E8F0;
    color: #94A3B8;
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   2. DESKTOP & LARGE MONITORS (1025px - 1440px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
    .nv-search-layout-grid {
        grid-template-columns: 290px 1fr;
        gap: 28px;
    }
    .nv-pricing-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }
    .nv-profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .nv-profile-layout-grid-v2 {
        grid-template-columns: 68% 32%;
        gap: 28px;
    }
    .nv-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 32px;
    }
}

/* --------------------------------------------------------------------------
   3. TABLET & LAPTOP SCREENS (769px - 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nv-container {
        padding: 0 18px;
    }

    .main-navigation .nav-menu {
        gap: 14px;
    }

    .main-navigation .nav-menu a {
        font-size: 13.5px;
    }

    .nv-pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .nv-search-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nv-search-sidebar-wrapper {
        margin-bottom: 16px;
    }

    .nv-profiles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .nv-profile-hero-card-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }

    .hero-v2-avatar-col {
        justify-content: center;
    }

    .hero-profile-name {
        justify-content: center;
    }

    .hero-meta-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-match-quote-grid {
        grid-template-columns: 1fr;
    }

    .nv-profile-layout-grid-v2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-columns-grid,
    .nv-footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px;
    }
}

/* --------------------------------------------------------------------------
   4. TABLET PORTRAIT & MOBILE BREAKPOINT (<= 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .main-navigation {
        display: none !important;
    }

    .nv-mobile-toggle-btn {
        display: flex !important;
    }

    .nv-header-inner {
        height: 68px;
    }

    .nv-brand-name {
        font-size: 19px;
    }

    .nv-brand-tagline {
        font-size: 11px;
    }

    .nv-hero-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nv-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .nv-hero-search-box {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .nv-hero-search-box .btn-hero-search {
        grid-column: 1 / -1;
    }

    /* Mobile Search Filters Toggle */
    .nv-mobile-filter-bar {
        display: block !important;
    }

    .nv-search-sidebar-wrapper {
        display: none;
    }

    .nv-search-sidebar-wrapper.is-open {
        display: block !important;
        animation: nvFadeIn 0.25s ease;
    }
}

/* --------------------------------------------------------------------------
   5. STANDARD MOBILE PHONES (<= 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .nv-hide-mobile {
        display: none !important;
    }

    .nv-show-mobile {
        display: block !important;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .nv-header-inner {
        height: 62px;
    }

    .nv-logo-icon {
        font-size: 24px;
    }

    .nv-brand-name {
        font-size: 17px;
        letter-spacing: 0.3px;
    }

    .nv-brand-tagline {
        display: none;
    }

    .nv-header-actions {
        gap: 6px;
    }

    .nv-user-name,
    .dropdown-caret {
        display: none !important;
    }

    .nv-user-avatar-btn {
        padding: 0;
        background: transparent;
        border: none;
    }

    .nv-avatar-img {
        width: 36px;
        height: 36px;
    }

    /* Form Controls on Mobile: 16px font prevents iOS zoom */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea,
    .nv-input,
    .nv-select,
    .nv-textarea {
        font-size: 16px !important;
        min-height: 46px;
    }

    /* Hero Section on Mobile */
    .nv-hero-section {
        padding: 24px 0 36px 0;
    }

    .nv-hero-title {
        font-size: clamp(22px, 5.5vw, 30px) !important;
        line-height: 1.28 !important;
    }

    .nv-hero-desc {
        font-size: 14px !important;
    }

    .nv-quick-search-card {
        padding: 20px 16px !important;
        border-radius: 14px;
    }

    .nv-hero-trust-pills {
        justify-content: center;
        gap: 8px;
    }

    .trust-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Profile Cards on Mobile */
    .nv-profiles-grid,
    .nv-featured-cards-grid,
    .nv-pricing-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .nv-profile-card {
        max-width: 100%;
        border-radius: 14px;
    }

    .nv-card-actions-row {
        flex-direction: column;
        gap: 8px;
    }

    .nv-card-actions-row .nv-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 44px;
    }

    /* Single Profile View on Mobile */
    .nv-single-profile-page {
        padding-bottom: 85px !important;
    }

    .nv-profile-mobile-sticky-bar {
        display: block !important;
    }

    .nv-profile-hero-card-v2 {
        padding: 20px 16px;
        border-radius: 14px;
        gap: 18px;
    }

    .hero-v2-actions-col {
        display: none !important; /* Managed by sticky bar on mobile */
    }

    .avatar-circle-frame {
        width: 120px;
        height: 120px;
    }

    .hero-profile-name {
        font-size: 22px;
    }

    .hero-meta-demographics {
        font-size: 14.5px;
    }

    .hero-meta-culture {
        font-size: 13.5px;
    }

    .hero-match-quote-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nv-profile-section-card {
        padding: 20px 16px !important;
        border-radius: 14px;
    }

    .nv-kv-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    /* Form Rows & Layouts */
    .form-row-2col,
    .nv-form-row {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Multi-step / Auth Card */
    .nv-auth-card {
        padding: 24px 18px !important;
        border-radius: 14px !important;
        margin: 10px auto !important;
    }

    .auth-title {
        font-size: 22px !important;
    }

    .auth-subtitle {
        font-size: 13.5px !important;
    }

    /* Modals & Dialogs on Mobile */
    .nv-modal-box,
    .nv-modal-content,
    .checkout-modal-content,
    .report-modal-box {
        width: calc(100vw - 24px) !important;
        max-width: 95vw !important;
        max-height: 88dvh !important;
        max-height: 88vh !important;
        padding: 20px 16px !important;
        border-radius: 14px !important;
        margin: 12px auto;
        overflow-y: auto;
    }

    /* Footer on Mobile */
    .footer-columns-grid,
    .nv-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
        text-align: center;
    }

    .nv-footer-brand {
        justify-content: center;
    }

    .nv-trust-badges,
    .nv-payment-logos {
        justify-content: center;
    }

    .nv-footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --------------------------------------------------------------------------
   6. SMALL & EXTRA-SMALL SMARTPHONES (320px - 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .nv-container {
        padding: 0 12px !important;
    }

    .nv-header-inner {
        height: 58px;
    }

    .nv-brand-name {
        font-size: 16px;
    }

    .nv-logo-icon {
        font-size: 22px;
    }

    .nv-profile-hero-card-v2 {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .avatar-circle-frame {
        width: 104px;
        height: 104px;
    }

    .hero-profile-name {
        font-size: 20px;
    }

    .hero-online-status-pill {
        font-size: 11.5px;
        padding: 3px 10px;
    }

    .hero-match-card {
        padding: 12px;
    }

    .hero-match-card .score-number {
        font-size: 24px;
    }

    .hero-quote-card {
        padding: 12px;
    }

    .quote-body-text {
        font-size: 13px;
    }

    .nv-profile-section-card {
        padding: 16px 12px !important;
        border-radius: 12px;
    }

    .section-card-title {
        font-size: 16px;
    }

    .nv-kv-item {
        padding: 8px 10px;
    }

    .nv-kv-item .lbl {
        font-size: 12px;
    }

    .nv-kv-item .val {
        font-size: 13.5px;
    }

    .nv-radio-toggle-group {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .nv-radio-btn {
        width: 100% !important;
    }

    .nv-btn {
        padding: 11px 16px;
        font-size: 14px;
    }

    /* Smallest Screens (320px - 360px) */
    .sticky-bar-inner {
        gap: 5px;
    }

    .btn-sticky-action {
        min-width: 44px;
        padding: 4px 6px;
    }

    .btn-sticky-action .action-text {
        font-size: 9.5px;
    }

    .btn-sticky-main {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* Hide footer in chatting interface on mobile & tablet */
@media (max-width: 991px) {
    body.page-template-page-dashboard .site-footer,
    body.page-template-page-dashboard #colophon,
    body.page-template-page-dashboard .nv-dhaka-bottom-border,
    body.nv-chat-active .site-footer,
    body.nv-chat-active #colophon,
    body.nv-chat-active .nv-dhaka-bottom-border,
    .nv-chat-container.has-active-chat ~ .site-footer,
    .nv-chat-container.mobile-chat-active ~ .site-footer,
    .dashboard-tab-pane#tab-messages ~ .site-footer,
    body.page-template-page-dashboard footer.site-footer {
        display: none !important;
    }
}

