﻿/* ═══════════════════════════════════════════
   FindMe Services — Design System & Styles
   Multi-Page Version
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500&family=Noto+Sans+Devanagari:wght@400;600&display=swap');

:root {
    --primary: #1A3C6E;
    --primary-light: #2563EB;
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --success: #059669;
    --danger: #DC2626;
    --surface: #F8FAFC;
    --surface-dark: #0F172A;
    --text-primary: #1E293B;
    --text-muted: #64748B;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --gradient-hero: linear-gradient(135deg, #1A3C6E 0%, #2563EB 50%, #1A3C6E 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--surface);
    margin: 0;
    overflow-x: hidden;
    padding-top: 72px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3, h4, h5 {
    font-weight: 600;
}

a {
    text-decoration: none;
}

.hindi {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

/* ─── Page Fade In ─── */
.page-content {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Navbar ─── */
.navbar-fm {
    background: #fff;
    box-shadow: 0 2px 16px rgba(26,60,110,0.08);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

    .navbar-fm.scrolled {
        box-shadow: 0 4px 24px rgba(26,60,110,0.15);
    }

    .navbar-fm .navbar-brand {
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 1.4rem;
    }

    .navbar-fm .brand-find {
        color: var(--primary);
    }

    .navbar-fm .brand-me {
        color: var(--accent);
    }

.nav-link-fm {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 8px 12px !important;
}

    .nav-link-fm:hover, .nav-link-fm.active {
        color: var(--primary-light) !important;
    }

.btn-find-expert {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff !important;
    border: none;
    border-radius: 24px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .btn-find-expert:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
    }

.btn-join-pro {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    border-radius: 24px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-join-pro:hover {
        background: var(--accent);
        color: #fff !important;
    }

/* ─── Hero ─── */
.hero-section {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    margin-top: -72px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px);
    }

    .hero-section h1 {
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        opacity: 0.9;
    }

.hero-search {
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 30px auto 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

    .hero-search input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 1rem;
        padding: 10px 0;
        background: transparent;
        color: var(--text-primary);
    }

    .hero-search button {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 10px 24px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s;
    }

    .hero-search input:focus {
        box-shadow: none;
    }

/* ─── Trust Stats ─── */
.trust-stats {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.trust-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    text-align: center;
    transition: all 0.3s ease;
}

    .trust-stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(26,60,110,0.15);
    }

    .trust-stat-card .icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .trust-stat-card .number {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--primary);
    }

    .trust-stat-card .label {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

/* ─── Cards ─── */
.fm-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all 0.3s ease;
}

    .fm-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.15);
    }

    .fm-card.no-hover:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(26,60,110,0.10);
    }

/* Category Cards */
.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

    .category-card:hover {
        border-color: var(--primary-light);
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(26,60,110,0.12);
        color: inherit;
    }

    .category-card.selected {
        border-color: var(--primary-light);
        background: #EFF6FF;
    }

    .category-card .cat-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
        display: block;
    }

    .category-card .cat-name {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-primary);
    }

    .category-card .cat-hindi {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

/* Professional Cards */
.pro-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(26,60,110,0.10);
}

    .pro-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.18);
    }

.pro-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.badge-verified {
    background: #D1FAE5;
    color: #059669;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-premium {
    background: #FEF3C7;
    color: #D97706;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-annual {
    background: #DBEAFE;
    color: #2563EB;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-monthly {
    background: #F1F5F9;
    color: #64748B;
    font-weight: 500;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.78rem;
    display: inline-block;
}

.badge-spec {
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 8px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.stars {
    color: var(--accent);
    font-size: 0.85rem;
}

/* ─── How It Works ─── */
.how-step {
    text-align: center;
    padding: 20px;
}

    .how-step .step-num {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.3rem;
        margin: 0 auto 16px;
    }

    .how-step .step-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .how-step h5 {
        font-weight: 600;
    }

    .how-step p {
        color: var(--text-muted);
        font-size: 0.9rem;
    }

/* ─── Testimonials ─── */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
}

.testimonial-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

    .testimonial-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .testimonial-scroll::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 3px;
    }

    .testimonial-scroll > div {
        scroll-snap-align: start;
        min-width: 300px;
        flex-shrink: 0;
    }

/* ─── Section ─── */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* ─── Wizard / Consult ─── */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.wizard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s;
}

    .wizard-dot.active {
        background: var(--primary-light);
        width: 32px;
        border-radius: 6px;
    }

    .wizard-dot.done {
        background: var(--success);
    }

.wizard-line {
    width: 40px;
    height: 2px;
    background: var(--border);
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.3s ease;
}

    .wizard-step.active {
        display: block;
    }

/* ─── Auth ─── */
.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-tabs .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
}

    .auth-tabs .nav-link.active {
        color: var(--primary);
        border-bottom: 3px solid var(--primary);
    }

/* ─── Dashboard ─── */
.dash-stat {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
    border-left: 4px solid var(--primary-light);
}

    .dash-stat .stat-val {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--primary);
    }

    .dash-stat .stat-label {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

/* Dashboard Sidebar */
.dash-sidebar {
    background: var(--surface-dark);
    color: #fff;
    min-height: calc(100vh - 72px);
    padding: 24px 16px;
    border-radius: 0;
}

    .dash-sidebar .sidebar-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        color: #CBD5E1;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.9rem;
        text-decoration: none;
        margin-bottom: 4px;
    }

        .dash-sidebar .sidebar-link:hover, .dash-sidebar .sidebar-link.active {
            background: rgba(37,99,235,0.2);
            color: #fff;
        }

.dash-content {
    padding: 24px;
}

/* ─── Pricing ─── */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(26,60,110,0.08);
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(26,60,110,0.15);
    }

    .pricing-card.featured {
        border-color: var(--accent);
        transform: scale(1.03);
        box-shadow: 0 8px 40px rgba(245,158,11,0.2);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05);
        }

.price-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-card .badge-popular {
    background: var(--accent);
    color: #fff;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .pricing-card ul li {
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

        .pricing-card ul li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
            margin-right: 8px;
        }

/* ─── Footer ─── */
.footer-fm {
    background: var(--surface-dark);
    color: #CBD5E1;
    padding: 48px 0 24px;
}

    .footer-fm h5 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .footer-fm a {
        color: #94A3B8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

        .footer-fm a:hover {
            color: var(--accent);
        }

    .footer-fm .footer-disclaimer {
        font-size: 0.78rem;
        color: #64748B;
        border-top: 1px solid #1E293B;
        padding-top: 20px;
        margin-top: 24px;
    }

/* ─── Buttons ─── */
.btn-primary-fm {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary-fm:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
    }

.btn-accent-fm {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-accent-fm:hover {
        transform: scale(1.02);
        filter: brightness(1.1);
        color: #fff;
    }

.btn-outline-fm {
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    border-radius: 12px;
    padding: 8px 22px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-outline-fm:hover {
        background: var(--primary-light);
        color: #fff;
    }

/* ─── Forms ─── */
.form-control-fm {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

    .form-control-fm:focus {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    }

.form-select-fm {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 10px 14px;
}

/* ─── Toast ─── */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.fm-toast {
    padding: 14px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 250px;
}

    .fm-toast.success {
        background: var(--success);
    }

    .fm-toast.error {
        background: var(--danger);
    }

    .fm-toast.info {
        background: var(--primary-light);
    }

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ─── FAB ─── */
.fab-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(245,158,11,0.5);
    transition: all 0.3s;
    display: none;
}

    .fab-btn:hover {
        transform: scale(1.1);
    }

/* ─── Mobile Bottom Nav ─── */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 6px 0 env(safe-area-inset-bottom, 0);
    z-index: 1000;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}

    .mobile-bottom-nav a {
        flex: 1;
        text-align: center;
        padding: 6px 4px;
        cursor: pointer;
        color: var(--text-muted);
        font-size: 0.7rem;
        transition: color 0.3s;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .mobile-bottom-nav a.active {
            color: var(--primary-light);
        }

        .mobile-bottom-nav a .icon {
            font-size: 1.3rem;
            display: block;
        }

/* ─── Verified Pulse ─── */
@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.pulse {
    animation: pulse 2s ease infinite;
}

/* ─── Tables ─── */
.table-fm {
    font-size: 0.88rem;
}

    .table-fm th {
        background: #F8FAFC;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border);
        white-space: nowrap;
    }

    .table-fm td {
        vertical-align: middle;
    }

/* ─── Accordion FAQ ─── */
.accordion-fm .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

    .accordion-fm .accordion-button:not(.collapsed) {
        background: #EFF6FF;
        color: var(--primary);
        box-shadow: none;
    }

    .accordion-fm .accordion-button:focus {
        box-shadow: none;
    }

/* ─── Why Choose ─── */
.feature-card {
    text-align: center;
    padding: 32px 20px;
}

    .feature-card .f-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin: 0 auto 16px;
    }

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .dash-sidebar {
        min-height: auto;
        border-radius: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 40px;
        min-height: auto;
    }

        .hero-section h1 {
            font-size: 1.7rem;
        }

    .mobile-bottom-nav {
        display: flex;
    }

    .fab-btn {
        display: block;
    }

    body {
        padding-bottom: 64px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.4rem;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
        gap: 8px;
    }

        .hero-search input {
            padding: 12px;
            width: 100%;
        }

        .hero-search button {
            width: 100%;
            border-radius: 12px;
            padding: 12px;
        }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}





/*==========================================================================================================*/
/* CUSTOM CSS */

.main-logo {
    width: 10rem;
}

.footer-fm {
    background: #111827;
    color: #d1d5db;
}

.footer-fm h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer-fm a {
    color: #d1d5db;
    text-decoration: none;
    transition: .3s;
}

.footer-fm a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-fm .small {
line-height: 1.8;
}

.footer-fm hr {
border-color: rgba(255,255,255,.1);
}

.main-logo {
    height: 55px;
    width: auto;
}

.vision-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}
