/*=============================================
  WealthGate Investment - Professional Styles
  =============================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --gold: #f0b90b;
  --gold-light: #fcd535;
  --gold-dark: #c99a08;
  --dark: #0a0e27;
  --dark-2: #131837;
  --dark-3: #1c2050;
  --green: #00d084;
  --green-dark: #00a868;
  --green-light: #00e68a;
  --red: #ff4757;
  --blue-accent: #3742fa;
  --text-light: #b8c0d0;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #f0f2f8;
  color: #1a1f36;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
}

main { flex: 1; }

/* =============== NAVBAR =============== */
.navbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%) !important;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white) !important;
}

.navbar-brand i {
  color: var(--gold);
  font-size: 1.6rem;
  margin-right: 6px;
}

.navbar-brand span { color: var(--gold); }

.navbar .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  margin: 0 2px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}

.navbar .btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000 !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(240,185,11,0.3);
  transition: var(--transition);
}

.navbar .btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(240,185,11,0.45);
}

.navbar .nav-link.text-danger { color: #ff6b6b !important; }

/* =============== HERO =============== */
.hero-section {
  background: linear-gradient(135deg, #060918 0%, #0d1035 30%, #181c50 60%, #0a0e27 100%);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240,185,11,0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,208,132,0.06) 0%, transparent 60%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,185,11,0.12);
  border: 1px solid rgba(240,185,11,0.25);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-section .hero-badge .pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,208,132,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,208,132,0); }
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.1s both;
  letter-spacing: -1px;
}

.hero-section h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-section .btn-primary-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(240,185,11,0.35);
  text-decoration: none;
  display: inline-block;
}

.hero-section .btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(240,185,11,0.5);
  color: #000;
}

.hero-section .btn-outline-cta {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.hero-section .btn-outline-cta:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats .stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}

.hero-stats .stat-item h3.gold { color: var(--gold); }
.hero-stats .stat-item h3.green { color: var(--green); }

.hero-stats .stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-visual .floating-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  position: absolute;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-visual .floating-card.card-1 { top: 10%; right: 5%; animation-delay: 0s; }
.hero-visual .floating-card.card-2 { bottom: 15%; right: 20%; animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============== SECTION TITLES =============== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .label {
  display: inline-block;
  background: rgba(240,185,11,0.1);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* =============== CARDS =============== */
.card {
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  background: transparent;
  border-bottom: 1px solid #eef0f5;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}

/* =============== PACKAGE CARDS =============== */
.package-card {
  border: 2px solid #e8ecf2;
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
  box-shadow: 0 8px 36px rgba(240,185,11,0.18);
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px;
}

.package-card .pkg-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,185,11,0.15), rgba(0,208,132,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}

.package-card .pkg-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.package-card .pkg-roi {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #00a868);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-card .pkg-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}

.package-card .pkg-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: #4b5563;
}

.package-card .pkg-features li i {
  color: var(--green);
  margin-right: 8px;
}

/* =============== STAT CARDS =============== */
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--blue-accent);
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-card.green { border-left-color: var(--green); }
.stat-card.gold { border-left-color: var(--gold); }
.stat-card.red { border-left-color: var(--red); }

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.stat-card .stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============== BALANCE DISPLAY =============== */
.balance-display {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
}

.balance-display .amount {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--gold-light);
}

.balance-display .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* =============== ROI HIGHLIGHT =============== */
.roi-highlight {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
}

/* =============== BUTTONS =============== */
.btn-invest {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,208,132,0.3);
}

.btn-invest:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,208,132,0.45);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  color: #000;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240,185,11,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240,185,11,0.45);
  color: #000;
}

/* =============== AUTH PAGES =============== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #060918 0%, #0d1035 30%, #131837 100%);
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.auth-card .auth-brand {
  text-align: center;
  margin-bottom: 28px;
}

.auth-card .auth-brand h3 {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.auth-card .auth-brand i {
  color: var(--gold);
  font-size: 2rem;
}

.auth-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.auth-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #374151;
  margin-bottom: 6px;
}

.auth-card .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #f9fafb;
}

.auth-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240,185,11,0.1);
  background: #fff;
}

.auth-card .btn-auth {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  color: #000;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240,185,11,0.3);
}

.auth-card .btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240,185,11,0.45);
}

/* =============== FEATURE CARDS =============== */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.feature-card .feature-icon.blue { background: #eff6ff; color: #3b82f6; }
.feature-card .feature-icon.green { background: #ecfdf5; color: #10b981; }
.feature-card .feature-icon.gold { background: #fffbeb; color: #f59e0b; }
.feature-card .feature-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.feature-card .feature-icon.red { background: #fef2f2; color: #ef4444; }

.feature-card h5 { font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: #6b7280; font-size: 0.95rem; margin: 0; }

/* =============== HOW IT WORKS =============== */
.steps-section {
  background: var(--white);
}

.step-item {
  text-align: center;
  padding: 20px;
}

.step-item .step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-item h5 { font-weight: 700; margin-bottom: 6px; }
.step-item p { color: #6b7280; font-size: 0.9rem; }

/* =============== TESTIMONIALS =============== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
  opacity: 0.2;
}

.testimonial-card .stars { color: var(--gold); margin-bottom: 8px; }

/* =============== TABLE =============== */
.table { margin-bottom: 0; }
.table th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  border-bottom-width: 2px;
  padding: 14px 16px;
}
.table td {
  vertical-align: middle;
  padding: 14px 16px;
  font-size: 0.95rem;
}

/* =============== BADGES =============== */
.badge-status-active { background: #d1fae5; color: #065f46; font-weight: 600; padding: 6px 12px; border-radius: 6px; }
.badge-status-completed { background: #e0e7ff; color: #3730a3; font-weight: 600; padding: 6px 12px; border-radius: 6px; }
.badge-status-pending { background: #fef3c7; color: #92400e; font-weight: 600; padding: 6px 12px; border-radius: 6px; }
.badge-status-approved { background: #d1fae5; color: #065f46; font-weight: 600; padding: 6px 12px; border-radius: 6px; }
.badge-status-rejected { background: #fee2e2; color: #991b1b; font-weight: 600; padding: 6px 12px; border-radius: 6px; }

/* =============== FOOTER =============== */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer h5 { font-weight: 700; margin-bottom: 18px; }
.footer h6 { font-weight: 700; margin-bottom: 14px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.footer a { color: var(--text-light); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer a:hover { color: var(--gold-light); }
.footer .footer-divider { border-color: rgba(255,255,255,0.08); margin: 30px 0 20px; }

/* =============== ANIMATIONS =============== */
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }

/* =============== CTA BANNER =============== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240,185,11,0.1) 0%, transparent 60%);
}

.cta-banner h3 { font-size: 2rem; font-weight: 800; position: relative; }

/* =============== TRUST BAR =============== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
  padding: 30px 0;
}

.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #374151;
}

.trust-bar .trust-item i { font-size: 1.4rem; color: var(--green); }

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
  .hero-section h1 { font-size: 2.5rem; }
  .hero-section { padding: 70px 0 80px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-title h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .hero-section h1 { font-size: 2rem; }
  .hero-section .lead { font-size: 1rem; }
  .balance-display .amount { font-size: 2rem; }
  .hero-stats { gap: 16px; }
  .hero-stats .stat-item h3 { font-size: 1.5rem; }
  .hero-section .hero-cta { position: relative; z-index: 10; }
  .hero-section .btn-primary-cta,
  .hero-section .btn-outline-cta {
    display: block; width: 100%; text-align: center; margin-bottom: 10px;
  }
}

/* =============== LIVE TICKER =============== */
.live-ticker-wrapper {
  background: #ffffff;
  border-bottom: 1px solid #eef0f5;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
}

.live-ticker-container {
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.live-ticker-label {
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-right: 16px;
  white-space: nowrap;
}

.live-ticker-label .pulse-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.live-ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding: 8px 0;
}

.live-ticker-item {
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  padding: 2px 0;
}

.live-ticker-item strong {
  font-weight: 700;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============== MOBILE OFFCANVAS =============== */
.offcanvas.bg-dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%) !important;
}

.offcanvas .nav-link {
  font-size: 0.95rem;
  border-radius: 8px;
  margin: 2px 0;
  transition: var(--transition);
  color: rgba(255,255,255,0.8) !important;
}

.offcanvas .nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}

.navbar-toggler {
  padding: 6px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.navbar-toggler:hover {
  background: rgba(255,255,255,0.2);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =============== SCROLLBAR =============== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }