/* Aramco Life v2 — Complete Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --gold: #E8B93A; --gold-light: #F5D76E; --gold-dark: #C9A030; --gold-glow: rgba(232,185,58,0.25);
  --navy: #0F172A; --navy-light: #1E293B; --navy-lighter: #334155; --surface-dark: #0B1220;
  --surface: #F8FAFC; --surface-elevated: #FFFFFF; --surface-hover: #F1F5F9;
  --text-primary: #0F172A; --text-secondary: #64748B; --text-light: #94A3B8; --text-white: #F1F5F9;
  --success: #10B981; --success-bg: rgba(16,185,129,0.12); --warning: #F59E0B; --warning-bg: rgba(245,158,11,0.12);
  --info: #3B82F6; --info-bg: rgba(59,130,246,0.12); --danger: #EF4444; --danger-bg: rgba(239,68,68,0.12);
  --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 20px; --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12); --shadow-gold: 0 4px 20px rgba(232,185,58,0.25);
  --shadow-navy: 0 4px 20px rgba(15,23,42,0.2); --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--surface); color: var(--text-primary); overflow-x: hidden; line-height:1.5; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top:0; left:0; right:0; z-index:1000; display:flex; align-items:center; justify-content:space-between; padding: 0 32px; height:64px; background: rgba(15,23,42,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-brand { display:flex; align-items:center; gap:12px; cursor:pointer; text-decoration:none; }
.nav-logo { width:36px; height:36px; background: var(--gold); border-radius: var(--radius-sm); display:flex; align-items:center; justify-content:center; font-weight:700; color: var(--navy); font-size:18px; flex-shrink:0; }
.nav-brand-text { display:flex; flex-direction:column; }
.nav-brand-title { color: var(--text-white); font-weight:600; font-size:15px; line-height:1.2; }
.nav-brand-sub { color: var(--gold); font-size:10px; letter-spacing:1.5px; text-transform:uppercase; font-weight:500; }
.nav-links { display:flex; gap:24px; align-items:center; }
.nav-link { color: var(--text-light); text-decoration:none; font-size:13px; font-weight:500; transition: var(--transition); cursor:pointer; border:none; background:none; padding: 0; white-space:nowrap; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-signin { background: var(--gold); color: var(--navy); padding: 8px 20px; border-radius: var(--radius-sm); font-weight:600; font-size:13px; border:none; cursor:pointer; transition: var(--transition); text-decoration:none; display:inline-block; }
.nav-signin:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-user { display:none; align-items:center; gap:10px; color: var(--text-white); font-size:14px; }
.nav-avatar { width:32px; height:32px; border-radius:50%; background: var(--gold); display:flex; align-items:center; justify-content:center; font-weight:600; color: var(--navy); font-size:13px; cursor:pointer; flex-shrink:0; }
.nav-user-dropdown { position:relative; }
.nav-dropdown-menu { position:absolute; top:48px; right:0; background:white; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:8px 0; min-width:180px; display:none; z-index:1001; }
.nav-dropdown-menu.active { display:block; }
.nav-dropdown-item { display:block; padding:10px 16px; font-size:13px; color:var(--text-primary); text-decoration:none; cursor:pointer; transition:var(--transition); border:none; background:none; width:100%; text-align:left; }
.nav-dropdown-item:hover { background:var(--surface-hover); color:var(--gold); }
.nav-dropdown-divider { height:1px; background:#E2E8F0; margin:6px 0; }
.nav-hamburger { display:none; background:none; border:none; color:var(--text-white); font-size:22px; cursor:pointer; }
.nav-mobile-menu { display:none; position:fixed; top:64px; left:0; right:0; background:var(--navy); padding:20px; z-index:999; max-height:calc(100vh - 64px); overflow-y:auto; }
.nav-mobile-menu.active { display:block; }
.nav-mobile-menu a, .nav-mobile-menu button { display:block; color:var(--text-light); text-decoration:none; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:14px; background:none; border:none; width:100%; text-align:left; cursor:pointer; }
.nav-mobile-menu a:hover, .nav-mobile-menu button:hover { color:var(--gold); }
.cart-badge-nav { position:relative; }
.cart-count-nav { position:absolute; top:-6px; right:-6px; background: var(--danger); color: white; width:16px; height:16px; border-radius:50%; font-size:9px; font-weight:600; display:none; align-items:center; justify-content:center; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--gold); color: var(--navy); padding: 12px 24px; border-radius: var(--radius-md); font-weight:600; font-size:14px; border:none; cursor:pointer; transition: var(--transition); display:inline-flex; align-items:center; gap:8px; text-decoration:none; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary:disabled { opacity:0.5; cursor:not-allowed; transform:none; }
.btn-secondary { background: transparent; color: var(--text-white); padding: 12px 24px; border-radius: var(--radius-md); font-weight:600; font-size:14px; border: 1px solid rgba(255,255,255,0.2); cursor:pointer; transition: var(--transition); display:inline-flex; align-items:center; gap:8px; text-decoration:none; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: white; color: var(--text-primary); padding: 10px 20px; border-radius: var(--radius-md); font-weight:600; font-size:13px; border: 1px solid #E2E8F0; cursor:pointer; transition: var(--transition); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { background: var(--danger); color: white; padding: 10px 20px; border-radius: var(--radius-md); font-weight:600; font-size:13px; border:none; cursor:pointer; transition: var(--transition); }
.btn-danger:hover { background: #DC2626; }
.btn-sm { padding: 6px 14px; font-size:12px; }
.btn-lg { padding: 16px 36px; font-size:15px; }
.btn-navy { background: var(--navy); color: white; padding: 10px 20px; border-radius: var(--radius-md); font-weight:600; font-size:13px; border:none; cursor:pointer; transition: var(--transition); }
.btn-navy:hover { background: var(--gold); color: var(--navy); }

/* ===== HERO ===== */
.hero { background: var(--navy); min-height: 92vh; display:flex; align-items:center; padding: 60px 48px; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-50%; left:-20%; width:600px; height:600px; background: radial-gradient(circle, rgba(232,185,58,0.08) 0%, transparent 70%); border-radius:50%; }
.hero::after { content:''; position:absolute; bottom:-30%; right:-10%; width:500px; height:500px; background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%); border-radius:50%; }
.hero-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; width:100%; position:relative; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background: rgba(232,185,58,0.12); border: 1px solid rgba(232,185,58,0.2); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom:24px; }
.hero-badge-dot { width:6px; height:6px; background: var(--gold); border-radius:50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title { font-size:52px; font-weight:700; line-height:1.1; color: var(--text-white); margin-bottom:20px; }
.hero-title .accent { color: var(--gold); }
.hero-desc { font-size:16px; color: var(--text-light); line-height:1.7; max-width:480px; margin-bottom:32px; }
.hero-buttons { display:flex; gap:16px; margin-bottom:48px; flex-wrap:wrap; }
.hero-stats { display:flex; gap:0; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow:hidden; }
.hero-stat { padding: 20px 28px; text-align:center; border-right: 1px solid rgba(255,255,255,0.08); flex:1; }
.hero-stat:last-child { border-right:none; }
.hero-stat-value { font-size:24px; font-weight:700; color: var(--gold); }
.hero-stat-label { font-size:11px; color: var(--text-light); margin-top:4px; letter-spacing:0.5px; }
.hero-cards { display:flex; flex-direction:column; gap:16px; }
.hero-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 18px 22px; display:flex; align-items:center; gap:14px; transition: var(--transition); }
.hero-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.hero-card-icon { width:44px; height:44px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.hero-card-icon.flight { background: rgba(59,130,246,0.15); }
.hero-card-icon.medical { background: rgba(16,185,129,0.15); }
.hero-card-icon.housing { background: rgba(245,158,11,0.15); }
.hero-card-info { flex:1; }
.hero-card-title { color: var(--text-white); font-weight:600; font-size:14px; }
.hero-card-sub { color: var(--text-light); font-size:12px; margin-top:2px; }
.hero-card-status { padding: 4px 10px; border-radius: 100px; font-size:10px; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; }

/* ===== COMMON ===== */
.page-section { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
.section-header { text-align:center; padding: 70px 32px 40px; }
.section-label { color: var(--gold); font-size:12px; font-weight:600; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; }
.section-title { font-size:38px; font-weight:700; color: var(--text-primary); line-height:1.2; }
.section-title-white { color: white; }
.section-desc { color: var(--text-secondary); font-size:16px; margin-top:12px; max-width:560px; margin-left:auto; margin-right:auto; line-height:1.6; }
.section-desc-white { color: var(--text-light); }

/* ===== SERVICES ===== */
.services-section { padding: 0 48px 60px; max-width:1200px; margin:0 auto; }
.services-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.service-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-xl); padding: 28px; transition: var(--transition); position:relative; overflow:hidden; cursor:pointer; text-decoration:none; color:inherit; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card.featured { background: var(--navy); color: white; }
.service-card.featured .service-title { color: white; }
.service-card.featured .service-desc { color: var(--text-light); }
.service-icon { width:48px; height:48px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:16px; }
.service-icon.gold { background: var(--gold); }
.service-icon.orange { background: rgba(245,158,11,0.15); }
.service-icon.blue { background: rgba(59,130,246,0.15); }
.service-icon.green { background: rgba(16,185,129,0.15); }
.service-icon.purple { background: rgba(139,92,246,0.15); }
.service-icon.red { background: rgba(239,68,68,0.15); }
.service-title { font-size:18px; font-weight:700; margin-bottom:8px; color: var(--text-primary); }
.service-desc { font-size:13px; color: var(--text-secondary); line-height:1.6; margin-bottom:16px; }
.service-list { list-style:none; }
.service-list li { display:flex; align-items:center; gap:8px; font-size:12px; color: var(--text-secondary); margin-bottom:6px; }
.service-list li::before { content:'✓'; width:16px; height:16px; background: var(--gold); border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; color: var(--navy); font-size:10px; font-weight:700; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--navy); padding: 70px 48px; }
.steps-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:0; max-width:1100px; margin: 40px auto 0; background: rgba(255,255,255,0.04); border-radius: var(--radius-xl); overflow:hidden; }
.step { padding: 36px 28px; position:relative; border-right: 1px solid rgba(255,255,255,0.06); }
.step:last-child { border-right:none; }
.step-num { font-size:44px; font-weight:700; color: rgba(232,185,58,0.15); line-height:1; margin-bottom:14px; }
.step-title { color: white; font-size:16px; font-weight:600; margin-bottom:8px; }
.step-desc { color: var(--text-light); font-size:13px; line-height:1.7; }
.step:hover { background: rgba(255,255,255,0.04); }

/* ===== STATS ===== */
.stats-bar { background: var(--gold); padding: 36px 48px; }
.stats-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-around; align-items:center; flex-wrap:wrap; gap:24px; }
.stat-item { text-align:center; }
.stat-value { font-size:34px; font-weight:700; color: var(--navy); }
.stat-label { font-size:13px; color: rgba(15,23,42,0.7); margin-top:4px; font-weight:500; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 70px 48px; max-width:1200px; margin:0 auto; }
.testimonials-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; margin-top:40px; }
.testimonial { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-xl); padding: 28px; transition: var(--transition); }
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text { font-size:14px; color: var(--text-secondary); line-height:1.7; font-style:italic; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:10px; }
.testimonial-avatar { width:38px; height:38px; border-radius:50%; background: var(--gold); display:flex; align-items:center; justify-content:center; font-weight:600; color: var(--navy); font-size:12px; }
.testimonial-name { font-weight:600; font-size:13px; color: var(--text-primary); }
.testimonial-role { font-size:11px; color: var(--text-secondary); }

/* ===== CTA ===== */
.cta-section { background: var(--navy); padding: 80px 48px; text-align:center; }
.cta-title { font-size:38px; font-weight:700; color: white; line-height:1.2; margin-bottom:16px; }
.cta-desc { color: var(--text-light); font-size:16px; max-width:480px; margin: 0 auto 32px; line-height:1.6; }

/* ===== FOOTER ===== */
.footer { background: var(--surface-dark); padding: 50px 48px 20px; }
.footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand-text { color: var(--text-white); font-weight:600; font-size:14px; }
.footer-brand-sub { color: var(--gold); font-size:9px; letter-spacing:1.5px; text-transform:uppercase; }
.footer-desc { color: var(--text-light); font-size:12px; line-height:1.7; max-width:260px; }
.footer-col-title { color: var(--gold); font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:8px; }
.footer-links a { color: var(--text-light); text-decoration:none; font-size:12px; transition: var(--transition); cursor:pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width:1200px; margin: 32px auto 0; padding-top:20px; border-top: 1px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; color: var(--text-light); font-size:11px; }

/* ===== DASHBOARD ===== */
.dashboard { padding: 20px 28px 28px; max-width:1400px; margin:0 auto; }
@media (max-width: 640px) { .dashboard { padding: 16px 14px 20px; } }
.dash-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; gap:12px; }
.dash-greeting { font-size:22px; font-weight:700; color: var(--text-primary); }
.dash-greeting span { color: var(--gold); }
.dash-date { color: var(--text-secondary); font-size:13px; }
.dash-grid { display:grid; grid-template-columns: 240px 1fr; gap:20px; max-width: 100%; min-width: 0; }
.dash-main { max-width: 100%; min-width: 0; overflow: hidden; }
.dash-sidebar { display:flex; flex-direction:column; gap:2px; }
.dash-nav-item { display:flex; align-items:center; gap:10px; padding: 10px 14px; border-radius: var(--radius-md); cursor:pointer; transition: var(--transition); color: var(--text-secondary); font-size:13px; font-weight:500; text-decoration:none; }
.dash-nav-item:hover { background: #F1F5F9; color: var(--text-primary); }
.dash-nav-item.active { background: var(--navy); color: white; }
.dash-nav-icon { font-size:16px; width:22px; text-align:center; }
.dash-main { display:flex; flex-direction:column; gap:20px; }

.dash-stats { display:grid; grid-template-columns: repeat(5, 1fr); gap:14px; }
.dash-quick-actions { display:grid; grid-template-columns:repeat(5, 1fr); gap:10px; }
.qa-btn { justify-content:center; font-size:12px; padding:10px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dash-stat-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 18px; transition: var(--transition); }
.dash-stat-card:hover { box-shadow: var(--shadow-md); }
.dash-stat-icon { width:36px; height:36px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:10px; }
.dash-stat-label { font-size:11px; color: var(--text-secondary); margin-bottom:6px; }
.dash-stat-value { font-size:24px; font-weight:700; color: var(--text-primary); }
.dash-stat-change { font-size:11px; margin-top:4px; display:flex; align-items:center; gap:4px; }
.dash-stat-change.up { color: var(--success); }
.dash-stat-change.down { color: var(--danger); }

.dash-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 20px; }
.dash-card-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; flex-wrap:wrap; gap:8px; }
.dash-card-title { font-size:16px; font-weight:700; }
.dash-card-action { color: var(--gold); font-size:12px; font-weight:600; cursor:pointer; }

.chart-container { height:220px; position:relative; }
.chart-bar-group { display:flex; align-items:flex-end; justify-content:space-around; height:180px; gap:8px; padding-top:20px; }
.chart-bar-wrapper { flex:1; display:flex; flex-direction:column; align-items:center; gap:8px; }
.chart-bar { width:100%; max-width:44px; background: var(--gold); border-radius: 4px 4px 0 0; transition: var(--transition); position:relative; cursor:pointer; }
.chart-bar:hover { background: var(--gold-dark); }
.chart-bar-label { font-size:11px; color: var(--text-secondary); }
.chart-tooltip { position:absolute; bottom:100%; left:50%; transform:translateX(-50%); background: var(--navy); color: white; padding: 4px 10px; border-radius: 6px; font-size:11px; white-space:nowrap; opacity:0; transition: var(--transition); pointer-events:none; margin-bottom:6px; }
.chart-bar:hover .chart-tooltip { opacity:1; }

.dash-table { width:100%; border-collapse:collapse; }
.dash-table th { text-align:left; padding: 10px 14px; font-size:11px; color: var(--text-secondary); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; border-bottom: 1px solid #E2E8F0; }
.dash-table td { padding: 12px 14px; font-size:13px; color: var(--text-primary); border-bottom: 1px solid #F1F5F9; }
.dash-table tr:hover td { background: #F8FAFC; }

/* ===== FLIGHTS ===== */
.flight-search { background: var(--navy); border-radius: var(--radius-xl); padding: 28px; margin-bottom:20px; }
.flight-search-title { color: white; font-size:18px; font-weight:700; margin-bottom:16px; }
.flight-search-grid { display:grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap:10px; align-items:end; }
.flight-field { display:flex; flex-direction:column; gap:5px; }
.flight-field label { color: var(--text-light); font-size:11px; font-weight:500; }
.flight-field input, .flight-field select { padding: 10px 12px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: white; font-size:13px; }
.flight-field select { color: var(--text-primary); background: white; }
.flight-field select option { color: var(--text-primary); background: white; }
.flight-field input::placeholder { color: var(--text-light); }
.flight-results { display:flex; flex-direction:column; gap:10px; }
.flight-result { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 18px; display:grid; grid-template-columns: 52px 1fr auto auto; gap:16px; align-items:center; transition: var(--transition); }
.flight-result:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.flight-airline-logo { width:44px; height:44px; border-radius: var(--radius-md); background: #F1F5F9; display:flex; align-items:center; justify-content:center; font-size:22px; }
.flight-airline { font-weight:600; font-size:13px; }
.flight-num { font-size:11px; color: var(--text-secondary); }
.flight-time { display:flex; align-items:center; gap:12px; }
.flight-time-main { font-size:18px; font-weight:700; }
.flight-time-sub { font-size:10px; color: var(--text-secondary); }
.flight-time-line { display:flex; align-items:center; gap:4px; color: var(--text-secondary); font-size:11px; }
.flight-time-line::before, .flight-time-line::after { content:''; width:24px; height:1px; background: #CBD5E1; }
.flight-price-value { font-size:22px; font-weight:700; color: var(--gold); }
.flight-price-label { font-size:10px; color: var(--text-secondary); }
.flight-book-btn { background: var(--navy); color: white; padding: 8px 18px; border-radius: var(--radius-sm); font-weight:600; font-size:12px; border:none; cursor:pointer; margin-top:6px; transition: var(--transition); }
.flight-book-btn:hover { background: var(--gold); color: var(--navy); }

/* ===== MARKETPLACE ===== */
.marketplace-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
.product-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); overflow:hidden; transition: var(--transition); }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img { height:140px; background: linear-gradient(135deg, #F1F5F9, #E2E8F0); display:flex; align-items:center; justify-content:center; font-size:42px; overflow:hidden; }
.product-img img { width:100%; height:100%; object-fit:cover; }
.admin-product-thumb { width:40px; height:40px; border-radius:8px; object-fit:cover; background:#F1F5F9; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.img-preview { max-width:120px; max-height:120px; border-radius:8px; border:1px solid #E2E8F0; margin-top:8px; object-fit:cover; }
.product-info { padding: 14px; }
.product-name { font-weight:600; font-size:13px; margin-bottom:4px; }
.product-price { font-size:16px; font-weight:700; color: var(--gold); }
.product-price .original { font-size:11px; color: var(--text-secondary); font-weight:400; text-decoration:line-through; margin-left:4px; }

/* ===== RENTALS ===== */
.rental-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.rental-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); overflow:hidden; transition: var(--transition); }
.rental-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.rental-img { height:160px; background: linear-gradient(135deg, #1E293B, #334155); display:flex; align-items:center; justify-content:center; font-size:42px; position:relative; }
.rental-badge { position:absolute; top:10px; left:10px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 100px; font-size:10px; font-weight:600; }
.rental-info { padding: 16px; }
.rental-title { font-weight:600; font-size:14px; margin-bottom:3px; }
.rental-location { font-size:11px; color: var(--text-secondary); margin-bottom:10px; }
.rental-features { display:flex; gap:10px; margin-bottom:10px; }
.rental-feature { font-size:11px; color: var(--text-secondary); }
.rental-price { font-size:18px; font-weight:700; color: var(--gold); }
.rental-price span { font-size:11px; color: var(--text-secondary); font-weight:400; }

/* ===== HEALTHCARE ===== */
.healthcare-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
.healthcare-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 20px; text-align:center; transition: var(--transition); }
.healthcare-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.healthcare-icon { font-size:36px; margin-bottom:10px; }
.healthcare-name { font-weight:600; font-size:14px; margin-bottom:3px; }
.healthcare-type { font-size:11px; color: var(--text-secondary); margin-bottom:8px; }
.healthcare-rating { color: var(--gold); font-size:13px; margin-bottom:8px; }

/* ===== LEAVE ===== */
.leave-balance-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-bottom:20px; }
.leave-balance-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 18px; text-align:center; }
.leave-balance-icon { width:44px; height:44px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 10px; }
.leave-balance-title { font-size:12px; color: var(--text-secondary); margin-bottom:3px; }
.leave-balance-value { font-size:26px; font-weight:700; color: var(--text-primary); }
.leave-balance-total { font-size:11px; color: var(--text-secondary); margin-top:3px; }
.leave-progress { height:5px; background: #F1F5F9; border-radius: 3px; margin-top:10px; overflow:hidden; }
.leave-progress-bar { height:100%; border-radius: 3px; transition: width 0.8s ease; }

/* ===== INVESTMENTS ===== */
.investment-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.investment-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 24px; transition: var(--transition); position:relative; overflow:hidden; }
.investment-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.investment-card.featured { border: 2px solid var(--gold); }
.investment-badge { position:absolute; top:0; right:0; background: var(--gold); color: var(--navy); padding: 5px 14px; font-size:10px; font-weight:600; border-radius: 0 0 0 var(--radius-md); }
.investment-name { font-size:17px; font-weight:700; margin-bottom:6px; }
.investment-return { font-size:30px; font-weight:700; color: var(--gold); margin-bottom:4px; }
.investment-return-label { font-size:11px; color: var(--text-secondary); margin-bottom:16px; }
.investment-details { list-style:none; margin-bottom:16px; }
.investment-details li { display:flex; justify-content:space-between; padding: 7px 0; font-size:12px; border-bottom: 1px solid #F1F5F9; }
.investment-details li span:first-child { color: var(--text-secondary); }
.investment-details li span:last-child { font-weight:600; }
.investment-balance { font-size:13px; color: var(--text-secondary); margin-bottom:14px; }
.investment-balance strong { color: var(--gold); font-size:16px; }

/* Retirement Calculator */
.calc-card { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 24px; }
.calc-inputs { display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-bottom:20px; }
.calc-result { background: var(--navy); border-radius: var(--radius-lg); padding: 24px; text-align:center; }
.calc-result-value { font-size:28px; font-weight:700; color: var(--gold); margin-bottom:4px; }
.calc-result-label { font-size:12px; color: var(--text-light); }

/* Donut */
.donut-chart { width:140px; height:140px; margin:0 auto; position:relative; }
.donut-chart-inner { position:absolute; inset:24px; background:white; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-direction:center; }
.donut-value { font-size:20px; font-weight:700; }
.donut-label { font-size:10px; color:var(--text-secondary); }

/* ===== ADMIN ===== */
.admin-stats { display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; margin-bottom:20px; }
.admin-stat { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-lg); padding: 18px; }
.admin-stat-icon { width:36px; height:36px; border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:10px; }
.admin-stat-value { font-size:28px; font-weight:700; }
.admin-stat-label { font-size:11px; color: var(--text-secondary); margin-top:3px; }
.admin-tabs { display:flex; gap:3px; margin-bottom:20px; border-bottom: 1px solid #E2E8F0; padding-bottom:1px; overflow-x:auto; }
.admin-tab { padding: 8px 16px; border-radius: var(--radius-md) var(--radius-md) 0 0; font-size:12px; font-weight:600; cursor:pointer; border:none; background:none; color: var(--text-secondary); transition: var(--transition); white-space:nowrap; }
.admin-tab:hover { background: #F1F5F9; color: var(--text-primary); }
.admin-tab.active { background: var(--navy); color: white; }
.admin-table { width:100%; }
.admin-table th { text-align:left; padding: 10px 14px; font-size:10px; color: var(--text-secondary); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; border-bottom: 1px solid #E2E8F0; background:#F8FAFC; }
.admin-table td { padding: 10px 14px; font-size:12px; color: var(--text-primary); border-bottom: 1px solid #F1F5F9; }
.admin-table tr:hover td { background: #F8FAFC; }
.admin-avatar { width:30px; height:30px; border-radius:50%; background: var(--gold); display:flex; align-items:center; justify-content:center; font-weight:600; color: var(--navy); font-size:11px; flex-shrink:0; }
.admin-actions { display:flex; gap:5px; }
.admin-actions button { padding: 3px 10px; font-size:10px; border-radius: var(--radius-sm); cursor:pointer; border:1px solid #E2E8F0; background:white; transition:var(--transition); }
.admin-actions button:hover { border-color:var(--gold); }
.admin-actions .btn-approve { border-color:var(--success); color:var(--success); }
.admin-actions .btn-approve:hover { background:var(--success); color:white; }
.admin-actions .btn-reject { border-color:var(--danger); color:var(--danger); }
.admin-actions .btn-reject:hover { background:var(--danger); color:white; }
.search-bar { padding: 8px 14px; border: 1px solid #E2E8F0; border-radius: var(--radius-md); font-size:12px; width:260px; max-width:100%; margin-bottom:12px; }
.search-bar:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,185,58,0.15); }

/* ===== LOGIN ===== */
.login-page { min-height:100vh; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, #0B1220, #0F172A); position:relative; overflow:hidden; padding:20px; }
.login-glow { position:absolute; top:15%; left:50%; transform:translateX(-50%); width:500px; height:500px; background:radial-gradient(circle, rgba(232,185,58,0.12), transparent 70%); border-radius:50%; }
.login-card { background: white; border-radius: var(--radius-xl); padding: 44px; width:100%; max-width:400px; position:relative; z-index:1; box-shadow: var(--shadow-lg); }
.login-logo { width:52px; height:52px; background: var(--gold); border-radius: var(--radius-md); display:flex; align-items:center; justify-content:center; font-weight:700; color: var(--navy); font-size:22px; margin:0 auto 18px; }
.login-title { font-size:22px; font-weight:700; text-align:center; margin-bottom:4px; }
.login-subtitle { font-size:13px; color: var(--text-secondary); text-align:center; margin-bottom:24px; }

/* ===== MODAL ===== */
.modal-overlay { position:fixed; inset:0; background: rgba(0,0,0,0.5); z-index:2000; display:none; align-items:center; justify-content:center; backdrop-filter: blur(4px); }
.modal-overlay.active { display:flex; }
.modal { background: white; border-radius: var(--radius-xl); padding: 28px; max-width:480px; width:90%; max-height:90vh; overflow-y:auto; animation: modalIn 0.3s ease; position:relative; }
@keyframes modalIn { from { opacity:0; transform: scale(0.95); } to { opacity:1; transform: scale(1); } }
.modal-close { position:absolute; top:14px; right:14px; background:none; border:none; font-size:20px; cursor:pointer; color:var(--text-secondary); }
.modal-title { font-size:18px; font-weight:700; margin-bottom:6px; padding-right:24px; }
.modal-desc { color: var(--text-secondary); font-size:13px; margin-bottom:20px; }
.modal-actions { display:flex; gap:10px; margin-top:20px; }
.modal-actions button { flex:1; justify-content:center; }

/* ===== NOTIFICATION ===== */
.notification { position:fixed; top:76px; right:20px; background: white; border-radius: var(--radius-lg); padding: 14px 18px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold); z-index:3000; display:none; align-items:center; gap:10px; animation: slideIn 0.3s ease; max-width:360px; }
.notification.active { display:flex; }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
.notification-icon { font-size:18px; }
.notification-text { font-size:13px; font-weight:500; }
.notification-close { margin-left:auto; cursor:pointer; color: var(--text-secondary); font-size:16px; }

/* ===== CART ===== */
.cart-panel { position:fixed; top:0; right:0; width:380px; max-width:100%; height:100vh; background:white; z-index:2001; box-shadow: -4px 0 30px rgba(0,0,0,0.15); transform:translateX(100%); transition:transform 0.3s ease; display:flex; flex-direction:column; }
.cart-panel.active { transform:translateX(0); }
.cart-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.3); z-index:2000; display:none; }
.cart-overlay.active { display:block; }
.cart-header { padding:18px 22px; border-bottom:1px solid #E2E8F0; display:flex; justify-content:space-between; align-items:center; }
.cart-title { font-weight:700; font-size:16px; }
.cart-close { background:none; border:none; font-size:18px; cursor:pointer; color:var(--text-secondary); }
.cart-items { flex:1; overflow-y:auto; padding:14px 22px; }
.cart-item { display:flex; gap:10px; padding:10px 0; border-bottom:1px solid #F1F5F9; }
.cart-item-icon { width:44px; height:44px; background:linear-gradient(135deg,#F1F5F9,#E2E8F0); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:22px; }
.cart-item-info { flex:1; }
.cart-item-name { font-weight:600; font-size:12px; }
.cart-item-price { color:var(--gold); font-weight:600; font-size:12px; }
.cart-item-qty { display:flex; align-items:center; gap:6px; margin-top:3px; }
.cart-item-qty button { width:22px; height:22px; border:1px solid #E2E8F0; background:white; border-radius:4px; cursor:pointer; font-size:12px; display:flex; align-items:center; justify-content:center; }
.cart-footer { padding:18px 22px; border-top:1px solid #E2E8F0; }
.cart-total-row { display:flex; justify-content:space-between; margin-bottom:6px; font-size:13px; }
.cart-total-row.total { font-weight:700; font-size:15px; margin-top:6px; padding-top:6px; border-top:1px solid #E2E8F0; }
.cart-balance { font-size:11px; color:var(--text-secondary); margin-bottom:10px; }

/* ===== FORMS ===== */
.form-group { display:flex; flex-direction:column; gap:5px; margin-bottom:12px; }
.form-group label { font-size:12px; font-weight:600; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea { padding: 10px 12px; border-radius: var(--radius-md); border: 1px solid #E2E8F0; font-size:13px; transition: var(--transition); font-family:inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,185,58,0.15); }

/* ===== STATUS ===== */
.status-badge { padding: 3px 8px; border-radius: 100px; font-size:10px; font-weight:600; display:inline-block; }
.status-paid { background: var(--success-bg); color: var(--success); }
.status-processing { background: var(--info-bg); color: var(--info); }
.status-delivered { background: var(--success-bg); color: var(--success); }
.status-shipped { background: var(--warning-bg); color: var(--warning); }
.status-confirmed { background: var(--warning-bg); color: var(--warning); }
.status-upcoming { background: var(--success-bg); color: var(--success); }
.status-active { background: var(--info-bg); color: var(--info); }
.status-pending { background: var(--warning-bg); color: var(--warning); }
.status-approved { background: var(--success-bg); color: var(--success); }
.status-rejected { background: var(--danger-bg); color: var(--danger); }

/* ===== TABS ===== */
.tabs-row { display:flex; gap:6px; margin-bottom:16px; flex-wrap:wrap; }
.tab-btn { padding: 8px 16px; border-radius: 100px; font-size:12px; font-weight:600; cursor:pointer; border:none; transition:var(--transition); }
.tab-btn.active { background: var(--navy); color: white; }
.tab-btn:not(.active) { background: white; color: var(--text-secondary); border: 1px solid #E2E8F0; }
.tab-btn:not(.active):hover { border-color: var(--gold); color: var(--gold); }

/* ===== FILTER BAR ===== */
.filter-bar { display:flex; gap:10px; margin-bottom:20px; flex-wrap:wrap; }
.filter-bar select { padding: 8px 14px; border: 1px solid #E2E8F0; border-radius: var(--radius-md); font-size:12px; background:white; color:var(--text-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap:36px; }
  .hero-title { font-size:38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: repeat(3, 1fr); }
  .dash-quick-actions { grid-template-columns: repeat(3, 1fr); }
  .dash-sidebar { flex-direction:row; flex-wrap:nowrap; gap:6px; overflow-x:auto; padding-bottom:6px; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .dash-sidebar::-webkit-scrollbar { display:none; }
  .dash-nav-item { white-space:nowrap; font-size:12px; padding:8px 12px; flex-shrink:0; }
  .marketplace-grid, .healthcare-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-grid, .investment-grid { grid-template-columns: repeat(2, 1fr); }
  .leave-balance-grid, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .flight-search-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .calc-inputs { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .navbar { padding: 0 14px; }
  .nav-links .nav-link, .nav-signin { display:none; }
  .nav-hamburger { display:block; }
  .hero { padding: 36px 18px; }
  .hero-title { font-size:28px; }
  .hero-stats { flex-direction:column; }
  .section-title { font-size:26px; }
  .services-grid, .steps-grid, .marketplace-grid, .healthcare-grid, .rental-grid, .investment-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dash-stat-card { padding: 14px 12px; }
  .dash-stat-value { font-size: 20px; }
  .dash-stat-label { font-size: 10px; }
  .dash-stat-change { font-size: 10px; }
  .dash-quick-actions { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dash-quick-actions .btn-primary,
  .dash-quick-actions .action-btn,
  .dash-quick-actions a.btn-primary { font-size: 11px !important; padding: 10px 8px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dash-main { max-width: 100%; min-width: 0; }
  .dash-card { padding: 14px 12px; overflow-x: hidden; }
  .dash-table { font-size: 11px; table-layout: fixed; }
  .dash-table th, .dash-table td { padding: 6px 4px; word-break: break-word; }
  .dash-table td:nth-child(2) { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .dash-card:has(.dash-table) { overflow-x: auto; }
  .leave-balance-grid, .admin-stats { grid-template-columns: 1fr; }
  .flight-search-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cart-panel { width:100%; }
  .search-bar { width:100%; }
  .login-card { padding: 28px; }
}
