:root {
  --bg: #0a0a14;
  --bg2: #111122;
  --bg3: #1a1a30;
  --card: rgba(255, 255, 255, 0.04);
  --card-b: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-h: rgba(255, 255, 255, 0.09);
  --purple: #8B5CF6;
  --purple-l: #A78BFA;
  --blue: #3B82F6;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --cyan: #06B6D4;
  --pink: #EC4899;
  --text: #F0F0FF;
  --text2: #9898C0;
  --text3: #5a5a8a;
  --r: 18px;
  --rs: 12px;
  --rxs: 8px;
  --sh: 0 4px 24px rgba(0, 0, 0, 0.4);
  --sh-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --sw: 270px;
  --th: 60px;
  --tr: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

a,
button,
.btn {
  text-decoration: none !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

/* ===== SPLASH ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 30%, #1a0a3e 0%, var(--bg) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-inner {
  text-align: center;
}

.splash-hex {
  margin-bottom: 20px;
  animation: floatHex 3s ease-in-out infinite;
}

@keyframes floatHex {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.splash-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.splash-sub {
  color: var(--text2);
  margin-top: 6px;
  font-size: 0.95rem;
}

.splash-loader {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  margin: 24px auto 0;
  overflow: hidden;
}

.splash-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 99px;
  animation: loadBar 1.6s ease forwards;
}

@keyframes loadBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ===== PROFILE VIEW (QR scan result) ===== */
.profile-view {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: radial-gradient(ellipse at 50% 20%, rgba(139, 92, 246, 0.15) 0%, var(--bg) 60%);
}

.pv-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--card-b);
  border-radius: 28px;
  padding: 40px 28px 32px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.pv-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.pv-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.pv-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.5);
  margin: 0 auto;
}

.pv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pv-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.pv-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pv-title {
  font-size: 1rem;
  color: var(--purple-l);
  font-weight: 500;
  margin-bottom: 16px;
}

.pv-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.pv-meta span {
  font-size: 0.85rem;
  color: var(--text2);
}

.pv-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.pv-qr-wrap>div,
.pv-qr-wrap canvas,
.pv-qr-wrap img {
  border-radius: var(--rs);
}

.pv-qr-wrap>div {
  background: #fff;
  padding: 10px;
  border-radius: var(--rs);
}

.pv-id {
  font-size: 0.75rem;
  color: var(--text3);
  font-family: monospace;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pv-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text3);
}

/* ===== PANEL LAYOUT ===== */
.panel-app {
  display: flex;
  min-height: 100vh;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.sidebar {
  width: var(--sw);
  background: var(--bg2);
  border-right: 1px solid var(--card-b);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid var(--card-b);
}

.sb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.sb-close {
  font-size: 22px;
  color: var(--text2);
  padding: 4px 8px;
  border-radius: var(--rxs);
  display: none;
}

.sb-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.sb-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--rs);
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--tr);
  text-align: left;
  width: 100%;
}

.sb-btn:hover {
  background: var(--glass);
  color: var(--text);
}

.sb-btn.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.12));
  color: var(--purple-l);
  border-left: 3px solid var(--purple);
}

.sb-ico {
  font-style: normal;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sb-foot {
  padding: 14px;
  border-top: 1px solid var(--card-b);
}

.sb-user {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--rs);
  transition: var(--tr);
}

.sb-user:hover {
  background: var(--glass);
}

.sb-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.sb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-uname {
  font-size: 0.85rem;
  font-weight: 600;
}

.sb-urole {
  font-size: 0.72rem;
  color: var(--text3);
}

.panel-main {
  flex: 1;
  margin-left: var(--sw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: var(--th);
  background: rgba(17, 17, 34, 0.95);
  border-bottom: 1px solid var(--card-b);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.tb-menu {
  font-size: 22px;
  color: var(--text2);
  width: 40px;
  height: 40px;
  border-radius: var(--rxs);
  display: none;
  align-items: center;
  justify-content: center;
}

.tb-menu:hover {
  background: var(--glass);
}

.tb-title {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tb-icon-btn {
  font-size: 18px;
  padding: 8px;
  border-radius: var(--rxs);
  color: var(--text2);
  transition: var(--tr);
}

.tb-icon-btn:hover {
  background: var(--glass);
  color: var(--text);
}

.tb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.4);
}

.tb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-pages {
  flex: 1;
}

.pg {
  display: none;
}

.pg.active {
  display: block;
}

.pg-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* ===== DASHBOARD ===== */
.dash-hero {
  margin-bottom: 24px;
}

.dash-welcome h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.dash-welcome p {
  color: var(--text2);
  font-size: 0.9rem;
  max-width: 520px;
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mini-stat {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  padding: 16px 14px;
  text-align: center;
}

.mini-stat.violet {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
}

.mini-stat.emerald {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.08);
}

.mini-stat.sky {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.08);
}

.mini-stat.amber {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}

.ms-val {
  font-size: 1.8rem;
  font-weight: 800;
}

.ms-lbl {
  font-size: 0.72rem;
  color: var(--text2);
  margin-top: 2px;
  font-weight: 500;
}

.qr-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.qr-hero-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
}

.qr-hero-card.staff-qr {
  border-color: rgba(16, 185, 129, 0.2);
}

.qr-hero-card.manager-qr {
  border-color: rgba(245, 158, 11, 0.2);
}

.qr-hero-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: var(--green);
}

.qr-hero-card.manager-qr .qr-hero-label {
  color: var(--amber);
}

.qr-hero-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.qr-hero-card p {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 16px;
}

.qr-hero-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.qr-hero-wrap>div {
  background: #fff;
  padding: 10px;
  border-radius: var(--rs);
}

.qr-hero-url {
  font-size: 0.65rem;
  color: var(--text3);
  word-break: break-all;
  margin-bottom: 10px;
  font-family: monospace;
}

.activity-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 20px;
}

.activity-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.act-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.act-item:last-child {
  border-bottom: none;
}

.act-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.act-dot.register {
  background: var(--green);
}

.act-dot.update {
  background: var(--amber);
}

.act-dot.delete {
  background: var(--red);
}

.act-text {
  flex: 1;
  font-size: 0.85rem;
  min-width: 0;
}

.act-time {
  font-size: 0.72rem;
  color: var(--text3);
  white-space: nowrap;
}

.empty-mini {
  text-align: center;
  color: var(--text3);
  font-size: 0.85rem;
  padding: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--rs);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--tr);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
}

.btn.primary:hover {
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

.btn.ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--card-b);
}

.btn.ghost:hover {
  background: var(--glass-h);
}

.btn.warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn.danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn.lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn.full {
  width: 100%;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: var(--rxs);
  font-weight: 600;
}

.btn-sm.ghost {
  background: var(--glass);
  border: 1px solid var(--card-b);
  color: var(--text2);
}

.btn-sm.danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ===== FIELDS ===== */
.field {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--tr);
  outline: none;
}

.field:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.field::placeholder {
  color: var(--text3);
}

select.field option {
  background: var(--bg3);
}

.field-sm {
  padding: 8px 12px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  color: var(--text);
}

.field-bare {
  border: none;
  background: none;
  outline: none;
  color: var(--text);
  width: 100%;
  font-size: 0.9rem;
}

.color-field {
  height: 44px;
  padding: 4px;
  cursor: pointer;
}

.fg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg2m {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fg label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.span2 {
  grid-column: span 2;
}

/* ===== SCANNER ===== */
.scanner-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 24px 20px;
}

.scanner-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.scanner-card>p {
  color: var(--text2);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.cam-box {
  position: relative;
  background: #000;
  border-radius: var(--r);
  overflow: hidden;
  height: 280px;
  margin-bottom: 14px;
}

.cam-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cam-box canvas {
  display: none;
}

.cam-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text2);
  background: var(--bg3);
}

.cam-ph-ico {
  font-size: 44px;
}

.cam-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cam-frame {
  width: 200px;
  height: 200px;
  position: relative;
}

.cf {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--purple-l);
  border-style: solid;
}

.cf.tl {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}

.cf.tr {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}

.cf.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}

.cf.br {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
}

.cam-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-l), transparent);
  animation: laser 2s ease-in-out infinite;
}

@keyframes laser {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.scan-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.scan-divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
  color: var(--text3);
  font-size: 0.8rem;
}

.scan-divider::before,
.scan-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--card-b);
}

.scan-divider::before {
  left: 0;
}

.scan-divider::after {
  right: 0;
}

.scan-result-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
}

.sr-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.scan-result-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.scan-result-card>p {
  color: var(--text2);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.sr-person {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--rs);
  padding: 14px;
  margin-bottom: 14px;
  text-align: left;
}

.sr-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.sr-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== PERSONNEL LIST ===== */
.list-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  padding: 10px 14px;
  flex: 1;
  min-width: 180px;
}

.search-wrap:focus-within {
  border-color: var(--purple);
}

.list-count {
  font-size: 0.82rem;
  color: var(--text2);
  white-space: nowrap;
}

.vis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.vis-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 18px;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.vis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.vis-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--sh);
}

.vis-card:hover::before {
  transform: scaleX(1);
}

.vis-card.inactive {
  opacity: 0.55;
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.vc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.vc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.vc-name {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vc-title {
  font-size: 0.78rem;
  color: var(--text2);
  margin-top: 1px;
}

.role-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vc-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vc-tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text2);
}

.vc-tag.ok {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
}

.vc-tag.warn {
  background: rgba(245, 158, 11, 0.15);
  color: #FCD34D;
}

/* ===== FORM CARD ===== */
.form-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 28px 22px;
}

.form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-card>p {
  color: var(--text2);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.form-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.photo-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px dashed var(--card-b);
  margin: 0 auto 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: var(--tr);
}

.photo-circle:hover {
  border-color: var(--purple);
}

.photo-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 24px;
  text-align: center;
}

.photo-ph small {
  font-size: 10px;
  margin-top: 2px;
}

.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.qr-done-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
}

.qr-done-ico {
  font-size: 44px;
  margin-bottom: 8px;
}

.qr-done-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.qr-done-box {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.qr-done-box>div {
  background: #fff;
  padding: 12px;
  border-radius: var(--rs);
}

.qr-done-id {
  font-size: 0.78rem;
  color: var(--text3);
  font-family: monospace;
  margin-bottom: 16px;
}

.qr-done-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== TITLES ===== */
.titles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.titles-head h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.title-add-form {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 16px;
}

.titles-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  padding: 14px 16px;
}

.title-color {
  width: 6px;
  height: 40px;
  border-radius: 99px;
  flex-shrink: 0;
}

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

.title-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.title-role {
  font-size: 0.75rem;
  color: var(--text2);
}

.title-count {
  font-size: 0.72rem;
  color: var(--text3);
  margin-left: 8px;
}

/* ===== LOGS ===== */
.logs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.logs-head h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.badge-pill {
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple-l);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.log-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  padding: 12px 14px;
}

.log-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.log-dot.register {
  background: var(--green);
}

.log-dot.update {
  background: var(--amber);
}

.log-dot.delete {
  background: var(--red);
}

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

.log-name {
  font-size: 0.88rem;
  font-weight: 500;
}

.log-time {
  font-size: 0.72rem;
  color: var(--text3);
  margin-top: 2px;
}

/* ===== STATS ===== */
.sec-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.st-card {
  border-radius: var(--r);
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.st-violet {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.06));
  border-color: rgba(139, 92, 246, 0.25);
}

.st-emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.06));
  border-color: rgba(16, 185, 129, 0.25);
}

.st-sky {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.06));
  border-color: rgba(59, 130, 246, 0.25);
}

.st-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.06));
  border-color: rgba(245, 158, 11, 0.25);
}

.st-v {
  font-size: 2.2rem;
  font-weight: 800;
}

.st-l {
  font-size: 0.78rem;
  color: var(--text2);
  margin-top: 2px;
}

.st-i {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 24px;
  opacity: 0.3;
}

.chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.chart-box {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 20px;
}

.chart-box.full {
  grid-column: 1 / -1;
}

.chart-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bar-label {
  width: 90px;
  font-size: 0.75rem;
  color: var(--text2);
  text-align: right;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.5s ease;
}

.bar-count {
  font-size: 0.75rem;
  color: var(--text2);
  width: 24px;
  text-align: center;
}

.data-mgmt {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.upload-label {
  cursor: pointer;
}

/* ===== SETTINGS ===== */
.settings-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 28px 22px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.set-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.set-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.4);
}

.set-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.set-fields {
  flex: 1;
  min-width: 0;
}

.set-fields h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.role-pill {
  display: inline-block;
  font-size: 0.72rem;
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple-l);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin: 6px 0 16px;
}

.set-fields h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 12px;
}

/* ===== FIELD APP (Mobile Registration) ===== */
.field-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.field-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(17, 17, 34, 0.95);
  border-bottom: 1px solid var(--card-b);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.field-header strong {
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.field-header small {
  font-size: 0.72rem;
  color: var(--text2);
}

.field-mode-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--green);
}

.field-mode-badge.manager {
  background: rgba(245, 158, 11, 0.2);
  color: var(--amber);
}

.field-main {
  flex: 1;
  padding: 20px 16px 80px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.field-step {
  display: none;
}

.field-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.field-welcome {
  text-align: center;
  padding: 40px 0;
}

.fw-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.field-welcome h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.field-welcome p {
  color: var(--text2);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.field-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.field-section>p {
  color: var(--text2);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.field-section.center {
  text-align: center;
}

.field-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed rgba(139, 92, 246, 0.4);
  margin: 0 auto 24px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: var(--tr);
}

.field-photo:hover {
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}

.fp-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.field-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
}

.field-nav .btn {
  flex: 1;
}

.confirm-summary {
  margin-bottom: 20px;
}

.cs-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r);
  padding: 16px;
}

.cs-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.cs-photo-ph {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.cs-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs-info strong {
  font-size: 1.05rem;
}

.cs-info span {
  font-size: 0.82rem;
  color: var(--text2);
}

.kvkk-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 8px;
  cursor: pointer;
}

.kvkk-check input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--purple);
}

.success-anim {
  font-size: 56px;
  margin-bottom: 12px;
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% {
    transform: scale(0.5);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.person-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  padding: 14px 18px;
  margin: 0 auto 20px;
  max-width: 300px;
  text-align: left;
}

.pmc-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.pmc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-qr-wrap {
  display: flex;
  justify-content: center;
  margin: 12px 0;
}

.data-qr-wrap>div {
  background: #fff;
  padding: 12px;
  border-radius: var(--rs);
}

.data-qr-wrap.secondary>div {
  padding: 8px;
  opacity: 0.85;
}

.data-qr-hint {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.data-qr-hint.small {
  font-size: 0.72rem;
  color: var(--text3);
}

.field-steps-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-b);
}

.fsi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--tr);
}

.fsi-dot.active {
  background: var(--purple);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* ===== MODAL ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.modal-card {
  background: var(--bg2);
  border: 1px solid var(--card-b);
  border-radius: var(--r) var(--r) 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px 20px 32px;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: none;
  }
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: var(--rxs);
  background: var(--glass);
  color: var(--text2);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-x:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 30px;
}

.modal-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hi h2 {
  font-size: 1.15rem;
  font-weight: 700;
}

.modal-hi p {
  color: var(--text2);
  font-size: 0.85rem;
  margin-top: 2px;
}

.type-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.2);
  color: var(--purple-l);
  margin-top: 6px;
  margin-right: 4px;
}

.status-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}

.status-pill.active {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}

.status-pill.inactive {
  background: rgba(245, 158, 11, 0.2);
  color: #FCD34D;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.md-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text2);
}

.md-ic {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
}

.modal-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.modal-qr>div {
  background: #fff;
  padding: 10px;
  border-radius: var(--rs);
}

.modal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-foot .btn,
.modal-foot select {
  flex: 1;
  min-width: 120px;
}

/* ===== TOAST ===== */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 90%;
  max-width: 360px;
}

.toast {
  background: rgba(17, 17, 34, 0.95);
  border: 1px solid var(--card-b);
  color: var(--text);
  padding: 12px 20px;
  border-radius: var(--rs);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s ease;
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-lg);
}

.toast.show {
  opacity: 1;
  transform: none;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.12);
}

.toast.warning {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.12);
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text3);
}

.empty-state div {
  font-size: 44px;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .dash-stats-row,
  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-cards-grid,
  .chart-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sb-close {
    display: block;
  }

  .tb-menu {
    display: flex;
  }

  .panel-main {
    margin-left: 0;
  }

  .fg2 {
    grid-template-columns: 1fr;
  }

  .span2 {
    grid-column: span 1;
  }

  .settings-card {
    flex-direction: column;
    align-items: center;
  }

  .set-fields {
    width: 100%;
  }

  .vis-grid {
    grid-template-columns: 1fr;
  }

  .modal-backdrop {
    align-items: flex-end;
  }
}

@media (max-width: 480px) {
  .pg-inner {
    padding: 14px 12px 32px;
  }

  .dash-stats-row .ms-val {
    font-size: 1.4rem;
  }

  .st-v {
    font-size: 1.6rem;
  }

  .form-foot,
  .field-nav {
    flex-direction: column;
  }

  .form-foot .btn,
  .field-nav .btn {
    width: 100%;
  }

  .data-mgmt {
    flex-direction: column;
  }

  .data-mgmt .btn {
    width: 100%;
  }

  .chat-card {
    padding: 12px;
    height: calc(100vh - 120px);
  }

  .chat-msg {
    max-width: 90%;
  }
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* ===== OUTFIT FONT ON HEADINGS ===== */
h1,
h2,
h3,
h4,
.splash-name,
.tb-title,
.modal-hi h2,
.login-logo h2,
.pv-name,
.login-title,
.field-section h3 {
  font-family: 'Outfit', sans-serif !important;
}

/* ===== GÜVENLİ GİRİŞ PANELİ (LOGIN PANEL) STYLES ===== */
.login-app {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: radial-gradient(circle at 50% 30%, #1e1145 0%, #0a0a14 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.login-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.login-logo h2 {
  font-size: 1.6rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.login-sub {
  font-size: 0.85rem;
  color: var(--text2);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* ===== PREMIUM GLASSMORPHISM & VISUAL UPGRADES ===== */
.vis-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
}

.vis-card::before {
  background: linear-gradient(90deg, var(--purple), var(--blue)) !important;
}

.vis-card:hover {
  border-color: rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2) !important;
  transform: translateY(-4px) !important;
}

.sidebar {
  background: rgba(17, 17, 34, 0.8) !important;
  backdrop-filter: blur(25px) !important;
}

.topbar {
  background: rgba(10, 10, 20, 0.8) !important;
  backdrop-filter: blur(25px) !important;
}

/* Status active and inactive upgrades */
.status-pill.active {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: #34d399 !important;
}

.status-pill.inactive {
  background: rgba(245, 158, 11, 0.15) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  color: #fbbf24 !important;
}

.vc-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.vc-tag.ok {
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

.vc-tag.warn {
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

/* Language selection pill */
.lang-pill {
  font-size: 0.72rem;
  background: var(--glass);
  border: 1px solid var(--card-b);
  color: var(--text2);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
}

.lang-pill:hover {
  background: var(--glass-h);
  color: var(--text);
}

/* ===== CHAT MODÜLÜ VE BALONCUKLAR ===== */
.chat-card {
  background: var(--card);
  border: 1px solid var(--card-b);
  border-radius: var(--r);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 140px);
  min-height: 480px;
  box-shadow: var(--sh);
}

.chat-head {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--card-b);
  padding-bottom: 12px;
}

.chat-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
}

.chat-head p {
  font-size: 0.85rem;
  color: var(--text2);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--rs);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  scrollbar-width: thin;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 75%;
  align-self: flex-start;
}

.chat-msg.mine {
  align-self: flex-end;
}

.chat-msg-sender {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-l);
  margin-bottom: 2px;
  margin-left: 6px;
}

.chat-msg.mine .chat-msg-sender {
  align-self: flex-end;
  margin-right: 6px;
  margin-left: 0;
  color: var(--cyan);
}

.chat-msg-text {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-b);
  padding: 10px 14px;
  border-radius: 4px 16px 16px 16px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
  word-break: break-word;
}

.chat-msg.mine .chat-msg-text {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px 4px 16px 16px;
}

.chat-msg.admin .chat-msg-text {
  border-left: 3px solid var(--purple);
}

.chat-msg-time {
  font-size: 0.65rem;
  color: var(--text3);
  margin-top: 3px;
  align-self: flex-end;
  margin-right: 6px;
}

.chat-msg.mine .chat-msg-time {
  align-self: flex-start;
  margin-left: 6px;
  margin-right: 0;
}

.chat-input-wrap {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-b);
  border-radius: var(--rs);
  padding: 8px 12px;
  align-items: center;
}

.field-bare {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 6px 0;
}

/* Mobil Sohbet Özel Stilleri */
.field-chat-messages::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.field-chat-messages::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--card-b);
  border-radius: 10px;
}

/* ===== SELECT / OPTION FIX (Koyu Tema) ===== */
select.field,
select.field-sm,
#mdTitleSelect,
#fTitle,
#addTitle,
#addRole,
#newTitleRole {
  background: var(--bg3) !important;
  color: var(--text) !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239898C0' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 32px !important;
}

select option,
select.field option,
select.field-sm option {
  background: #1a1a30 !important;
  color: #F0F0FF !important;
  padding: 8px !important;
}

/* ===== TITLE CARD FIX ===== */
.title-card h4,
.title-info h4 {
  color: var(--text) !important;
}

.title-role,
.title-count {
  color: var(--text2) !important;
}

/* ===== MOBİL UYUMLULUK VE DUYARLI TASARIM ===== */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    box-shadow: var(--sh-lg);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .panel-main {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .tb-menu {
    display: flex !important;
  }

  .sb-close {
    display: block !important;
  }
}

@media (max-width: 768px) {

  /* Field Header Mobil Uyum */
  .field-header {
    padding: 10px 12px !important;
    gap: 6px !important;
  }

  .field-header strong {
    font-size: 0.9rem !important;
  }

  .field-header small {
    font-size: 0.7rem !important;
  }

  /* Mobil Kayıt / Giriş Kartı */
  .field-main {
    padding: 12px 8px !important;
  }

  .field-section {
    padding: 20px 14px !important;
    border-radius: var(--rs) !important;
  }

  /* Modal tam ekran (mobilde) */
  .modal-card {
    width: 94vw !important;
    max-width: 94vw !important;
    padding: 20px 16px !important;
    margin: 3vh auto !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
  }

  .login-card {
    width: 94vw !important;
    padding: 24px 16px !important;
  }

  .pv-card {
    width: 94vw !important;
    padding: 24px 16px !important;
  }

  /* QR kartları tek sütun */
  .qr-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stat kartları 2 sütun */
  .stat-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Dokunma hedeflerini büyüt */
  .btn,
  .btn-sm,
  button {
    min-height: 44px;
    font-size: 0.88rem;
  }

  /* Field input mobil uyum (iOS zoom engelleyici) */
  .field,
  .field-sm,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    font-size: 16px !important;
    min-height: 44px;
  }

  .fg2 {
    grid-template-columns: 1fr !important;
  }

  /* Chart tek sütun */
  .chart-row {
    grid-template-columns: 1fr !important;
  }

  /* Modal butonları yığın */
  .modal-foot {
    flex-direction: column !important;
  }

  .modal-foot .btn,
  .modal-foot select {
    width: 100% !important;
  }

  /* Topbar responsive */
  .topbar {
    padding: 8px 12px !important;
  }

  .tb-title {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {

  /* Küçük ekranlar */
  .dash-hero h2 {
    font-size: 1.2rem !important;
  }

  .dash-stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .mini-stat {
    padding: 12px 8px !important;
  }

  .ms-val {
    font-size: 1.3rem !important;
  }

  /* Personel kartları */
  .vis-card {
    padding: 12px !important;
  }

  .vc-name {
    font-size: 0.85rem !important;
  }

  /* Ünvan kartları */
  .title-card {
    padding: 10px 12px !important;
  }
}

/* iOS Safe Area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {

  .field-app,
  .panel-main {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Danger Button Stili */
.btn.danger {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn.danger:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* ===== LOGO IMAGE STYLES ===== */
.splash-logo-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatHex 3s ease-in-out infinite;
}

.splash-logo-img {
  max-width: 340px;
  max-height: 140px;
  width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.45));
}

.login-logo-img {
  max-width: 260px;
  max-height: 100px;
  width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.sb-logo-img {
  max-height: 40px;
  max-width: 180px;
  object-fit: contain;
}

.pv-logo-img {
  max-height: 32px;
  max-width: 160px;
  object-fit: contain;
}

.field-logo-img {
  max-height: 36px;
  max-width: 150px;
  object-fit: contain;
}

/* ===== TOPBAR RESPONSIVE & CLEAN HEADER FIXES ===== */
.topbar {
  height: var(--th);
  background: rgba(10, 10, 20, 0.85) !important;
  border-bottom: 1px solid var(--card-b);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) !important;
}

.tb-title {
  font-size: 1.05rem;
  font-weight: 700;
  flex: 1;
  min-width: 0;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.status-badge-top {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  line-height: 1.2;
}

.status-dot-ico {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot-ico.online {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}

.status-dot-ico.offline {
  background: #fbbf24;
  box-shadow: 0 0 6px #fbbf24;
}

.lang-pill-top {
  border-radius: 20px !important;
  font-size: 0.72rem !important;
  padding: 4px 10px !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .topbar {
    padding: 0 10px !important;
    gap: 6px !important;
  }

  .tb-title {
    font-size: 0.92rem !important;
  }

  .status-badge-top {
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
  }

  .tb-icon-btn {
    padding: 6px !important;
  }
}

@media (max-width: 520px) {
  .status-badge-top .badge-text-full {
    display: none !important;
  }

  .status-badge-top {
    padding: 5px 8px !important;
  }

  .tb-right {
    gap: 4px !important;
  }
}

/* ===== DEVELOPER FOOTER ===== */
.developer-footer {
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text3);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 20, 0.2);
  width: 100%;
  box-sizing: border-box;
}
.developer-footer a {
  color: var(--purple-l);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s, color 0.2s;
}
.developer-footer a:hover {
  opacity: 0.9;
  text-decoration: underline;
}

/* ==========================================================================
   ANTALYA MODİFİYE DERNEĞİ (ANTMODDER) LANDING PAGE - ULTRA MODERN AUTOMOTIVE STK DESIGN
   ========================================================================== */

.landing-app {
  background: #080812;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 40%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-btn {
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(139, 92, 246, 0.7) !important;
}

/* --- PREMIUM FLOATING AUTOMOTIVE NAVBAR --- */
.landing-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 18, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(139, 92, 246, 0.12);
  transition: all 0.3s ease;
}

.ln-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ln-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.ln-logo {
  height: 60px; /* BOLD & PROMINENT LOGO HEIGHT */
  width: auto;
  filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 26px rgba(236, 72, 153, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ln-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.95)) drop-shadow(0 0 34px rgba(236, 72, 153, 0.7));
}

.ln-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.22) 0%, rgba(139, 92, 246, 0.22) 100%);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.4);
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.25);
}

.ln-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ln-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  color: #a1a1aa;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 10px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.ln-links a:hover,
.ln-links a.active {
  color: #fff !important;
}

.ln-links a svg {
  color: #8b5cf6;
}

.ln-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ln-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 8px;
  border-radius: 8px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 80px 0 70px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow.glow-1 {
  width: 550px;
  height: 550px;
  top: -120px;
  left: 5%;
  background: rgba(139, 92, 246, 0.2);
}
.hero-bg-glow.glow-2 {
  width: 500px;
  height: 500px;
  bottom: 0;
  right: 5%;
  background: rgba(236, 72, 153, 0.16);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: #c4b5fd;
  margin-bottom: 24px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.h-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}

.h-stat-lbl {
  font-size: 0.82rem;
  color: #71717a;
  font-weight: 600;
}

.h-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
}

/* HERO MOCKUP CARD */
.hero-card-preview {
  background: linear-gradient(145deg, rgba(20, 20, 42, 0.88) 0%, rgba(12, 12, 28, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 35px rgba(139, 92, 246, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-card-preview:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 45px rgba(236, 72, 153, 0.3);
}

.hcp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hcp-dots {
  display: flex;
  gap: 6px;
}
.hcp-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hcp-dots .dot.red { background: #ff5f56; }
.hcp-dots .dot.yellow { background: #ffbd2e; }
.hcp-dots .dot.green { background: #27c93f; }

.hcp-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  padding: 5px 14px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.25);
}

.hcp-body {
  padding: 24px;
}

.hcp-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.hcp-stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.hcp-stat-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(139, 92, 246, 0.3);
}
.hcp-stat-box .lbl {
  display: block;
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-bottom: 4px;
}

.hcp-qr-demo {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px dashed rgba(139, 92, 246, 0.35);
  padding: 16px;
  border-radius: var(--rs);
  margin-bottom: 16px;
}

.hcp-qr-box {
  position: relative;
  width: 68px;
  height: 68px;
  background: #fff;
  color: #0d0d1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.qr-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: qrScan 2.2s ease-in-out infinite;
}

@keyframes qrScan {
  0% { top: 0%; }
  50% { top: 95%; }
  100% { top: 0%; }
}

.hcp-qr-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hcp-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.hcp-role-tag {
  font-size: 0.75rem;
  color: #c4b5fd;
  font-weight: 600;
}
.hcp-status-in {
  font-size: 0.78rem;
  color: #34d399;
  font-weight: 600;
}

.hcp-activity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hcp-act-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid rgba(139, 92, 246, 0.4);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.act-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
}
.act-dot.green { background: #10b981; }
.act-dot.amber { background: #f59e0b; }

.act-txt {
  flex: 1;
  color: #d4d4d8;
}
.act-time {
  font-size: 0.72rem;
  color: #71717a;
}

/* --- LANDING SECTIONS & CARDS --- */
.landing-section {
  padding: 95px 0;
  position: relative;
}
.landing-section.bg-alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ls-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #c4b5fd;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1.08rem;
  color: #a1a1aa;
  max-width: 720px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  padding: 34px 28px;
}

.ac-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.ac-icon.purple { background: rgba(139, 92, 246, 0.15); color: #c4b5fd; }
.ac-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.ac-icon.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.ac-icon.pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* PROCESS TIMELINE STEPS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  padding: 30px 24px;
  position: relative;
}

.pc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.3);
  margin-bottom: 10px;
}

.process-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.55;
}

/* MISSION & BOARD GRID */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  position: relative;
  padding: 42px;
}

.mission-card.purple-glow {
  border-left: 4px solid var(--purple);
}
.mission-card.cyan-glow {
  border-left: 4px solid var(--cyan);
}

.mc-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
}
.mc-badge.cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan);
}

.mc-icon {
  color: #c4b5fd;
  margin-bottom: 20px;
}
.mc-icon.cyan { color: var(--cyan); }

.mission-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.mission-card p {
  color: #a1a1aa;
  font-size: 1rem;
  line-height: 1.65;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px 26px;
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #c4b5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: #a1a1aa;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* GALLERY SECTION */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--tr);
}

.gf-btn:hover, .gf-btn.active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gi-img-wrap {
  position: relative;
  height: 230px;
  background: rgba(10, 10, 22, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gi-mock-screen {
  width: 90%;
  height: 85%;
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 92, 246, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gi-overlay {
  opacity: 1;
}

.gi-info {
  padding: 20px;
}
.gi-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c4b5fd;
  text-transform: uppercase;
}
.gi-info h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 4px;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-content {
  position: relative;
  max-width: 680px;
  width: 100%;
  padding: 32px;
  background: #111122;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.8rem;
  color: #a1a1aa;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

.lb-preview-box {
  min-height: 220px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: #c4b5fd;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-body {
  max-height: 220px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-body p {
  color: #a1a1aa;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-icon.purple { background: rgba(139, 92, 246, 0.15); color: #c4b5fd; }
.cc-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.cc-icon.green { background: rgba(16, 185, 129, 0.15); color: #34d399; }

.contact-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card p {
  color: #a1a1aa;
  font-size: 0.94rem;
}

.contact-form {
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* FOOTER */
.landing-footer {
  background: linear-gradient(180deg, #090914 0%, #040409 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px 0;
  position: relative;
}

.lf-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.lf-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .lf-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .lf-main-grid {
    grid-template-columns: 1fr;
  }
}

.lf-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.lf-logo {
  height: 42px;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.lf-brand-titles {
  display: flex;
  flex-direction: column;
}

.lf-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: #fff;
}

.lf-stk-badge {
  font-size: 0.7rem;
  color: #34d399;
  font-weight: 700;
}

.lf-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.lf-presidents {
  font-size: 0.85rem;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
}

.lf-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.lf-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  border-radius: 2px;
}

.lf-links-list, .lf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-links-list a {
  color: #a1a1aa;
  text-decoration: none !important;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.lf-links-list a:hover {
  color: #fff !important;
  transform: translateX(3px);
}

.lf-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lf-contact-list .lbl {
  font-size: 0.78rem;
  color: #71717a;
}

.lf-contact-list a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.lf-contact-list a:hover {
  color: #38bdf8 !important;
}

.lf-comm-text {
  font-size: 0.88rem;
  color: #a1a1aa;
  margin-bottom: 14px;
  line-height: 1.5;
}

.lf-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.lf-social-btn.wa {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.lf-social-btn.wa:hover {
  background: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.lf-social-btn.ig {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6 !important;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.lf-social-btn.ig:hover {
  background: rgba(236, 72, 153, 0.3);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.lf-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.lf-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #71717a;
  flex-wrap: wrap;
  gap: 12px;
}

.lf-copy {
  color: #71717a;
}

.lf-dev-tag {
  font-size: 0.85rem;
  color: #a1a1aa;
}

.lf-dev-tag .dev-link {
  color: #c4b5fd;
  text-decoration: none !important;
  font-weight: 700;
}

.lf-dev-tag .dev-link:hover {
  color: #fff;
}

/* --- RESPONSIVE MOBILE DRAWER & BREAKPOINTS --- */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .about-grid, .features-grid, .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .landing-nav {
    padding: 10px 0;
  }
  .ln-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgba(8, 8, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
  }
  .ln-links.show-mobile {
    display: flex;
  }
  .mobile-close-btn {
    display: none;
    position: fixed !important;
    top: 18px !important;
    right: 18px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 100005 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.2s ease !important;
  }
  .mobile-close-btn:hover, .mobile-close-btn:active {
    background: rgba(236, 72, 153, 0.3) !important;
    border-color: #ec4899 !important;
    transform: scale(1.08) !important;
  }
  .ln-links.show-mobile .mobile-close-btn {
    display: flex !important;
  }
  .ln-links a {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    padding: 10px 20px;
  }
  .ln-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .about-grid, .features-grid, .gallery-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .h-stat-divider {
    display: none;
  }
  .lf-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .ls-container {
    padding: 0 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .community-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    margin: 0 !important;
    gap: 16px !important;
  }

  .community-card {
    padding: 20px 14px !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .comm-header {
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .comm-header h3 {
    font-size: 1.1rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .comm-sub-text {
    font-size: 0.8rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .comm-desc {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .wa-btn, .ig-btn {
    font-size: 0.85rem !important;
    padding: 12px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .sponsor-card {
    padding: 18px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sponsors-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* --- SPONSORS SECTION STYLES --- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.sponsor-card {
  background: rgba(18, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.2);
}

.sponsor-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sponsor-badge.gold {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.sponsor-badge.silver {
  background: rgba(167, 139, 250, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.4);
}
.sponsor-badge.bronze {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.4);
}
.sponsor-badge.green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}
.sponsor-badge.cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(6, 182, 212, 0.4);
}
.sponsor-badge.amber {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.sponsor-logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sp-icon {
  font-size: 2rem;
}

.sp-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.sp-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sponsor-cta-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.sponsor-cta-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

.sponsor-cta-box p {
  color: #a1a1aa;
  font-size: 0.95rem;
}

/* --- COMMUNITY & SOCIAL HUB STYLES --- */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 992px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

.community-card {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: rgba(18, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.comm-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 12px;
  width: fit-content;
}
.comm-badge.green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.comm-badge.pink {
  background: rgba(236, 72, 153, 0.2);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.comm-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.comm-icon {
  font-size: 2.2rem;
}

.comm-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.comm-sub-text {
  font-size: 0.85rem;
  color: #a1a1aa;
}

.comm-desc {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.wa-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
}
.wa-btn:hover {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.7) !important;
}

.ig-btn {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.4) !important;
}
.ig-btn:hover {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.7) !important;
}

/* FLOATING QUICK SOCIAL WIDGET */
.floating-social-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fsb-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.fsb-btn.wa {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.5);
}

.fsb-btn.ig {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.5);
}

.fsb-btn:hover {
  transform: scale(1.1);
}

.phone-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.phone-link-badge:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}








































