﻿/* =============================================
   SKY MY TRIP — PROFILE & DASHBOARD PAGE
   Professional · Market-level UI
   ============================================= */

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #243370;
    --blue-700: #1a2558;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --primary: #243370;
    --primary-dark: #1a2558;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-xs: 0 1px 3px rgba(15, 23, 42, .06);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .08);
    --shadow-md: 0 6px 20px rgba(15, 23, 42, .10);
    --shadow-lg: 0 12px 36px rgba(15, 23, 42, .13);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-full: 9999px;
    --font: 'Calibri', sans-serif;
}

.flight-page {
    font-family: var(--font);
    -webkit-font-smoothing: antialiased
}

.flight-page button,
.flight-page input,
.flight-page select {
    font-family: var(--font)
}

.flight-page a {
    font-family: var(--font);
    text-decoration: none;
    color: inherit
}

.flight-page {
    background: #eef2f9;
    min-height: 100vh
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 16px
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between
}

/* =============================================
   HEADER
        =============================================*/
.header {
    background: #ED5E0E;
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.09);
    border-bottom-color: transparent;
}

.logo {
    width: 160px;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-blue {
    color: var(--blue-600);
}

.logo-orange {
    color: var(--orange-500);
}

.logo-plane {
    font-size: 14px;
    color: var(--orange-400);
    margin-left: 3px;
    display: inline-block;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-plane {
    transform: rotate(0deg) translateX(3px);
}

.header-logo img {

    width: 32px;
    cursor: pointer;
}

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

.wallet {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--slate-50);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: var(--r-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wallet svg {
    color: var(--blue-500);
    font-size: 14px;
}

.wallet:hover {
    background: var(--blue-50);
    border-color: var(--blue-200);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.notif-wrap {
    position: relative;
    display: inline-flex;
}

.notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.6;
    }
}

.icon {
    font-size: 18px;
    color: var(--slate-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--r-md);
    transition: background 0.2s ease;
}

.profile:hover {
    background: #f5f8ff;
}

.profile-text {
    text-align: right;
}

.name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.role {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.user {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    display: block;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.user:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

/* =============================================
   PROFILE HERO BANNER
   ============================================= */
.prof-hero {
    background: linear-gradient(135deg, #080e22 0%, #0e2060 45%, #1462c8 100%);
    padding: 36px 0 32px;
    position: relative;
    overflow: hidden
}

.prof-hero::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    right: -80px;
    top: -150px;
    pointer-events: none
}

.prof-hero::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    left: 5%;
    bottom: -80px;
    pointer-events: none
}

.prof-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

/* Avatar */
.prof-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 22px
}

.prof-avatar {
    position: relative;
    flex-shrink: 0
}

.prof-avatar img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .3);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3)
}

.prof-avatar-edit {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange-500);
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background .18s ease
}

.prof-avatar-edit:hover {
    background: var(--orange-600)
}

.prof-hero-info {}

.prof-hero-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 7px
}

.prof-hero-name-row h1 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px
}

.prof-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, .2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .3);
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 12px;
    font-weight: 700
}

.prof-hero-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.prof-hero-meta svg {
    font-size: 12px
}

.prof-hero-badges {
    display: flex;
    gap: 7px
}

.prof-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--r-full);
    letter-spacing: .4px
}

.prof-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, .4)
}

.prof-badge.blue {
    background: rgba(96, 165, 250, .2);
    color: #93c5fd;
    border: 1px solid rgba(96, 165, 250, .3)
}

/* Hero stats */
.prof-hero-stats {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-xl);
    overflow: hidden
}

.prof-hero-stat {
    padding: 18px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.prof-hero-stat:last-child {
    border-right: none
}

.prof-hero-stat h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: 3px
}

.prof-hero-stat p {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .5px;
    text-transform: uppercase
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
.prof-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 22px;
    padding: 28px 0 80px;
}

/* ── LEFT ── */
.prof-left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.prof-section {
    background: #fff;
    border-radius: var(--r-2xl);
    padding: 24px;
    border: 1px solid rgba(37, 99, 235, .08);
    box-shadow: var(--shadow-sm)
}

.prof-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.prof-section-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -.2px;
    margin-bottom: 16px
}

.prof-section-head .prof-section-title {
    margin-bottom: 0
}

.prof-see-all {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .18s ease
}

.prof-see-all:hover {
    gap: 8px
}

/* QUICK ACTIONS GRID */
.prof-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px
}

.prof-quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none
}

.prof-quick-card:hover {
    border-color: var(--blue-200);
    background: var(--blue-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.prof-quick-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform .2s ease
}

.prof-quick-card:hover .prof-quick-icon {
    transform: scale(1.1)
}

.prof-quick-text h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px
}

.prof-quick-text p {
    font-size: 12px;
    color: var(--text-muted)
}

.prof-quick-arrow {
    font-size: 10px;
    color: var(--text-muted);
    margin-left: auto;
    transition: transform .2s ease, color .2s ease
}

.prof-quick-card:hover .prof-quick-arrow {
    transform: translateX(3px);
    color: var(--primary)
}

/* RECENT BOOKINGS */
.prof-bookings {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.prof-booking-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
    border: 1.5px solid transparent
}

.prof-booking-row:hover {
    background: var(--slate-50);
    border-color: var(--border);
    transform: translateX(3px)
}

.prof-booking-logo {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    background: var(--slate-50);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.prof-booking-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.prof-booking-info {
    flex: 1;
    min-width: 0
}

.prof-booking-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary)
}

.prof-booking-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px
}

.prof-booking-right {
    text-align: right;
    flex-shrink: 0
}

.prof-booking-right h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px
}

.prof-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--r-full);
    border: 1px solid;
    letter-spacing: .3px;
    text-transform: capitalize
}

.prof-booking-chevron {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 8px;
    transition: transform .18s ease, color .18s ease
}

.prof-booking-row:hover .prof-booking-chevron {
    transform: translateX(3px);
    color: var(--primary)
}

/* ── RIGHT ── */
.prof-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 84px
}

/* PROFILE CARD */
.prof-card {
    background: #fff;
    border-radius: var(--r-2xl);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border-top: 3px solid var(--primary)
}

/* Tabs */
.prof-tabs {
    display: flex;
    border-bottom: 1px solid var(--slate-100);
    padding: 4px 4px 0
}

.prof-tab {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color .18s ease, border-color .18s ease;
    margin-bottom: -1px
}

.prof-tab:hover {
    color: var(--text-secondary)
}

.prof-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 700
}

.prof-tab-body {
    padding: 22px
}

.prof-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px
}

.prof-card-head h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3px
}

.prof-card-head p {
    font-size: 12px;
    color: var(--text-muted)
}

.prof-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-50);
    color: var(--primary);
    border: 1.5px solid var(--blue-200);
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .18s ease;
    white-space: nowrap;
    flex-shrink: 0
}

.prof-edit-btn:hover {
    background: var(--blue-100)
}

.prof-edit-btn.cancel {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fca5a5
}

/* FIELDS */
.prof-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px
}

.prof-field label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px
}

.prof-field-static {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    background: var(--slate-50);
    border-radius: var(--r-md);
    border: 1.5px solid var(--border)
}

.prof-field-icon {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0
}

.prof-field-static span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary)
}

.prof-input-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--slate-50);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 0 13px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease
}

.prof-input-wrap:focus-within {
    border-color: var(--blue-300);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.prof-input-icon {
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: color .18s ease
}

.prof-input-wrap:focus-within .prof-input-icon {
    color: var(--primary)
}

.prof-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-primary);
    padding: 11px 0
}

.prof-input-wrap input::placeholder {
    color: var(--slate-300)
}

.prof-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: var(--r-lg);
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
    transition: transform .2s ease, box-shadow .2s ease;
    margin-bottom: 18px
}

.prof-save-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(37, 99, 235, .42)
}

.prof-divider {
    height: 1px;
    background: var(--slate-100);
    margin-bottom: 16px
}

/* ACTION LIST */
.prof-action-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prof-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: var(--r-lg);
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
    width: 100%;
    text-align: left
}

.prof-action-row:hover {
    background: var(--slate-50);
    transform: translateX(3px)
}

.prof-action-row.logout:hover {
    background: #fef2f2
}

.prof-action-left {
    display: flex;
    align-items: center;
    gap: 12px
}

.prof-action-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.prof-action-icon.blue {
    background: var(--blue-50);
    color: var(--primary)
}

.prof-action-icon.orange {
    background: #fef3c7;
    color: #d97706
}

.prof-action-icon.red {
    background: #fef2f2;
    color: #dc2626
}

.prof-action-left h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px
}

.prof-action-left p {
    font-size: 12px;
    color: var(--text-muted)
}

.prof-action-chevron {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform .18s ease, color .18s ease
}

.prof-action-row:hover .prof-action-chevron {
    transform: translateX(3px);
    color: var(--primary)
}

.prof-action-row.logout:hover .prof-action-chevron {
    color: #dc2626
}

/* SECURITY TAB */
.prof-security-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.prof-sec-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    background: var(--slate-50);
    transition: border-color .18s ease
}

.prof-sec-row:hover {
    border-color: var(--blue-200)
}

.prof-sec-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.prof-sec-icon.blue {
    background: var(--blue-50);
    color: var(--primary)
}

.prof-sec-icon.orange {
    background: #fef3c7;
    color: #d97706
}

.prof-sec-icon.green {
    background: #f0fdf4;
    color: #16a34a
}

.prof-sec-icon.purple {
    background: #f3e8ff;
    color: #7c3aed
}

.prof-sec-info {
    flex: 1
}

.prof-sec-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px
}

.prof-sec-info p {
    font-size: 12px;
    color: var(--text-muted)
}

.prof-sec-btn {
    background: none;
    border: 1.5px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    white-space: nowrap;
    transition: all .18s ease
}

.prof-sec-btn:hover {
    background: var(--blue-50);
    border-color: var(--blue-200)
}

/* PREFERENCES TAB */
.prof-pref-list {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prof-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 12px;
    border-radius: var(--r-lg);
    border: 1.5px solid transparent;
    transition: background .18s ease, border-color .18s ease
}

.prof-pref-row:hover {
    background: var(--slate-50);
    border-color: var(--border)
}

.prof-pref-row h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px
}

.prof-pref-row p {
    font-size: 12px;
    color: var(--text-muted)
}

.prof-toggle {
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: var(--slate-200);
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background .25s ease;
    outline: none
}

.prof-toggle.on {
    background: var(--primary)
}

.prof-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    transition: left .25s cubic-bezier(.4, 0, .2, 1)
}

.prof-toggle.on .prof-toggle-thumb {
    left: 21px
}

.prof-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .2)
}

/* WALLET MINI CARD */
.prof-wallet-card {
    background: linear-gradient(135deg, #131d42, #1a2558 55%, #243370);
    border-radius: var(--r-2xl);
    padding: 22px;
    position: relative;
    overflow: hidden
}

.prof-wallet-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    right: -40px;
    top: -50px;
    pointer-events: none
}

.prof-wallet-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.prof-wallet-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0
}

.prof-wallet-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.prof-wallet-amount {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.6px
}

.prof-wallet-bar {
    height: 5px;
    background: rgba(255, 255, 255, .2);
    border-radius: var(--r-full);
    margin-bottom: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.prof-wallet-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, .9));
    border-radius: var(--r-full);
    transition: width .5s ease
}

.prof-wallet-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.prof-wallet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .2s ease;
    text-decoration: none;
    position: relative;
    z-index: 1
}

.prof-wallet-btn:hover {
    background: rgba(255, 255, 255, .28)
}

.prof-wallet-btn svg {
    font-size: 12px;
    transition: transform .2s ease
}

.prof-wallet-btn:hover svg {
    transform: translateX(4px)
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--slate-900);
    color: #fff;
    padding: 64px 0 0;
    margin-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.8px;
    color: inherit;
    cursor: pointer;
    transition: transform .2s ease
}

.footer-logo-link:hover {
    transform: scale(1.02)
}

.f-blue {
    color: var(--blue-400)
}

.f-orange {
    color: var(--orange-400)
}

.footer-plane {
    font-size: 14px;
    color: var(--orange-400);
    margin-left: 5px
}

.footer-left p {
    margin-top: 12px;
    font-size: 14px;
    color: var(--slate-400);
    max-width: 250px;
    line-height: 1.65
}

.socials {
    display: flex;
    gap: 9px;
    margin-top: 18px
}

.social {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--slate-800);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    border: 1px solid var(--slate-700);
    transition: background .2s ease, color .2s ease, transform .2s ease
}

.social:hover {
    background: var(--slate-700);
    color: #f1f5f9;
    transform: translateY(-2px)
}

.social.active {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: #fff;
    border-color: transparent
}

.footer-grid>div>h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--slate-200);
    margin-bottom: 16px
}

.footer-grid>div>p {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: color .18s ease, transform .18s ease
}

.footer-grid>div>p:hover {
    color: var(--slate-300);
    transform: translateX(3px)
}

.footer-link-icon {
    font-size: 10px;
    color: var(--blue-500);
    margin-right: 7px;
    opacity: .65;
    flex-shrink: 0
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 18px 0;
    text-align: center
}

.footer-copy {
    font-size: 12px;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .prof-main {
        grid-template-columns: 1fr
    }

    .prof-right {
        position: static
    }

    .prof-hero-stats {
        flex-wrap: wrap
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }
}

@media(max-width:768px) {
    .prof-quick-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .prof-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }
}

@media(max-width:640px) {
    .prof-hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .prof-quick-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}