/*
Theme Name: Rishta Studio
Theme URI: https://rishtastudio.com
Author: Rishta Studio
Description: A modern futuristic matchmaking platform theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: rishta-studio
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #A07830;
    --black: #0A0A0A;
    --dark: #111118;
    --dark2: #1A1A24;
    --dark3: #22222F;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
    --text-muted: #9090A0;
    --text-body: #D0C8B8;
    --border: rgba(201,168,76,0.2);
    --border-light: rgba(255,255,255,0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }
.site-logo img{
	max-height: 80px;
}
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 90%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

/* =============================================
   CONTAINER
============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* =============================================
   HEADER
============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
#site-header.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.site-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.site-logo span { color: var(--gold); }
.site-logo:hover { color: var(--white); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav a {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.current { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.current::after { right: 0; }

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTION
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0A0F 0%, #12121C 50%, #0A0A0A 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    bottom: 0; left: -50px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease infinite;
}
.hero-title { margin-bottom: 24px; }
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow), var(--shadow-gold);
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.match-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.match-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--dark3);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.match-item:hover { border-color: var(--border); transform: translateX(4px); }
.match-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
}
.match-info { flex: 1; }
.match-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.match-detail { font-size: 0.8rem; color: var(--text-muted); }
.match-badge {
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500;
}

/* =============================================
   SECTION COMMONS
============================================= */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}
.section-title { margin-bottom: 16px; }
.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}
.divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px auto;
}

/* =============================================
   CARDS
============================================= */
.card {
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}
.card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow), var(--shadow-gold);
}
.card:hover::before { opacity: 1; }

/* =============================================
   HOW IT WORKS
============================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px; left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.step-card { text-align: center; padding: 40px 24px; }
.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 16px; }
.step-title { font-size: 1.1rem; margin-bottom: 12px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   MEMBERSHIP PLANS
============================================= */
.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.plan-tab {
    padding: 10px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-muted);
    border: none;
    background: transparent;
}
.plan-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}
.plans-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plans-grid.active { display: grid; }
.plan-card {
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.plan-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark2), rgba(201,168,76,0.05));
    transform: scale(1.03);
}
.plan-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px; right: -30px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 50px;
    transform: rotate(45deg);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow), var(--shadow-gold); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-tier {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}
.plan-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 4px;
}
.plan-duration { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}
.plan-currency { font-size: 1.2rem; color: var(--gold); font-weight: 500; }
.plan-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
}
.plan-features { list-style: none; padding: 0; margin-bottom: 32px; }
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 4px;
}

/* =============================================
   SUCCESS STORIES
============================================= */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.story-card { cursor: pointer; }
.story-image {
    width: 100%;
    height: 240px;
    background: var(--dark3);
    border-radius: var(--radius);
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    font-size: 3rem;
}
.story-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}
.story-quote::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4em; }
.story-names { font-weight: 600; color: var(--gold); font-size: 0.9rem; }
.story-date { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* =============================================
   FORMS
============================================= */
.form-section {
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 36px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.02em;
}
.form-label span.required { color: var(--gold); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
    background: var(--dark3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.03);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C9A84C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.form-select option { background: var(--dark2); color: var(--white); }
.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: var(--dark3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}
.form-check:hover { border-color: var(--border); }
.form-check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}
.form-error {
    color: #FF6B6B;
    font-size: 0.8rem;
    margin-top: 4px;
}
.form-hint {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}
.form-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}
.form-step-item {
    flex: 1;
    text-align: center;
    position: relative;
}
.form-step-item::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%; right: -50%;
    height: 1px;
    background: var(--border-light);
}
.form-step-item:last-child::after { display: none; }
.step-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--dark3);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.form-step-item.active .step-dot,
.form-step-item.completed .step-dot {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}
.step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}
.form-step-item.active .step-label { color: var(--gold); }
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

/* =============================================
   DASHBOARD
============================================= */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 100vh;
    padding-top: 80px;
}
.dashboard-sidebar {
    background: var(--dark2);
    border-right: 1px solid var(--border-light);
    padding: 40px 0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}
.sidebar-profile {
    padding: 0 28px 32px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 24px;
}
.sidebar-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 16px;
    border: 3px solid var(--border);
}
.sidebar-name { font-size: 1.1rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.sidebar-plan {
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}
.alert.alert-warning{
	    display: block;
}
.sidebar-nav { 
	    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	
	padding: 0 16px; }
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
    text-decoration: none;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
    background: rgba(201,168,76,0.08);
    color: var(--gold);
}
.sidebar-nav-item .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-badge {
    margin-left: auto;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}
.dashboard-main { padding: 40px; background: var(--dark); }
.dashboard-header { margin-bottom: 36px; }
.dashboard-title { font-size: 2rem; margin-bottom: 8px; }
.dashboard-subtitle { color: var(--text-muted); }
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}
.dash-stat {
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.dash-stat:hover { border-color: var(--border); transform: translateY(-2px); }
.dash-stat-icon { font-size: 1.8rem; margin-bottom: 12px; }
.dash-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.dash-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   PROFILE DISPLAY
============================================= */
.profile-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 32px;
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}
.profile-avatar-lg {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
    border: 4px solid var(--border);
    overflow: hidden;
}
.profile-avatar-lg img { width: 100%; height: 100%; object-fit: cover; }
.profile-meta { flex: 1; }
.profile-name { font-size: 2rem; margin-bottom: 4px; }
.profile-tagline { color: var(--text-muted); margin-bottom: 16px; }
.profile-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.badge-gold { background: rgba(201,168,76,0.15); border: 1px solid var(--border); color: var(--gold); }
.badge-blue { background: rgba(100,150,255,0.15); border: 1px solid rgba(100,150,255,0.3); color: #6496FF; }
.badge-green { background: rgba(80,200,120,0.15); border: 1px solid rgba(80,200,120,0.3); color: #50C878; }

.profile-sections { display: grid; gap: 24px; }
.profile-section {
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.profile-section-header {
    display: flex; align-items: center; gap: 12px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    background: rgba(201,168,76,0.03);
}
.profile-section-title { font-size: 1rem; font-weight: 600; color: var(--white); }
.profile-section-icon { font-size: 1.1rem; }
.profile-rows { padding: 8px 0; }
.profile-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: start;
}
.profile-row:last-child { border-bottom: none; }
.profile-row-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.profile-row-value {
    font-size: 0.9rem;
    color: var(--text-body);
}

/* =============================================
   BANK DETAILS
============================================= */
.bank-card {
    background: linear-gradient(135deg, var(--dark2), rgba(201,168,76,0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.bank-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.bank-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
}
.bank-name-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}
.bank-rows { display: grid; gap: 16px; }
.bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--dark3);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    gap: 16px;
}
.bank-row-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; min-width: 120px; }
.bank-row-value { font-size: 0.95rem; color: var(--white); font-family: monospace; flex: 1; }
.copy-btn {
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}
.copy-btn:hover { background: var(--gold); color: var(--black); }
.copy-btn.copied { background: rgba(80,200,120,0.15); border-color: rgba(80,200,120,0.3); color: #50C878; }

/* =============================================
   ALERTS & NOTICES
============================================= */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}
.alert-warning {
    background: rgba(255,180,60,0.1);
    border: 1px solid rgba(255,180,60,0.3);
    color: #FFB43C;
}
.alert-success {
    background: rgba(80,200,120,0.1);
    border: 1px solid rgba(80,200,120,0.3);
    color: #50C878;
}
.alert-error {
    background: rgba(255,100,100,0.1);
    border: 1px solid rgba(255,100,100,0.3);
    color: #FF6464;
}
.alert-info {
    background: rgba(100,150,255,0.1);
    border: 1px solid rgba(100,150,255,0.3);
    color: #6496FF;
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: var(--black);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}
.footer-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--dark2);
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* =============================================
   PAYMENT UPLOAD
============================================= */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.03);
}
.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.upload-icon { font-size: 3rem; margin-bottom: 16px; }
.upload-text { color: var(--text-muted); font-size: 0.95rem; }
.upload-text strong { color: var(--gold); }
.upload-preview { margin-top: 20px; display: none; }
.upload-preview img { max-height: 200px; border-radius: var(--radius); margin: 0 auto; }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   UTILITIES
============================================= */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--dark3);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .dashboard-sidebar { position: static; height: auto; }
}
@media (max-width: 768px) {
	.logoutbb{
		display:none;
	}
    .main-nav, .header-actions .btn { display: none; }
    .hamburger { display: flex; }
    .form-grid { grid-template-columns: 1fr; }
    .form-section { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .profile-header { flex-direction: column; }
    .profile-row { grid-template-columns: 1fr; gap: 4px; }
    .bank-row { flex-direction: column; align-items: flex-start; }
    .section { padding: 60px 0; }
    .hero-stats { gap: 24px; }
    .steps-grid::before { display: none; }
    .dashboard-main { padding: 20px; }
}

/* =============================================
   MOBILE NAV
============================================= */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    text-align: center;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
    position: absolute;
    top: 35px; right: 35px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =============================================
   ABOUT PAGE
============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.team-card { text-align: center; }
.team-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border: 2px solid var(--border);
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--gold); margin-bottom: 8px; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   WHY CHOOSE US
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    padding: 36px 28px;
    text-align: center;
}
.feature-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}
.feature-title { font-size: 1.15rem; margin-bottom: 12px; }
.feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   CONTACT
============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; }
.contact-value { font-size: 0.95rem; color: var(--white); }

/* =============================================
   LOADING STATE
============================================= */
.skeleton {
    background: linear-gradient(90deg, var(--dark2) 25%, var(--dark3) 50%, var(--dark2) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}
.mobile-nav{
	z-index: 999999;
}
