/* Ulakora Super App Premium Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Theme Mapping --- */
:root {
  --font-family: 'Poppins', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.2);

  /* Primary Theme Colors (Teal / Purple/ Neon Blue) */
  --color-primary: hsl(174, 100%, 41%);       /* Neon Teal */
  --color-primary-glow: hsla(174, 100%, 41%, 0.3);
  --color-secondary: hsl(262, 80%, 60%);     /* Electric Purple */
  --color-secondary-glow: hsla(262, 80%, 60%, 0.3);
  --color-accent: hsl(195, 100%, 45%);       /* Cyber Blue */
  --color-accent-glow: hsla(195, 100%, 45%, 0.3);
  --color-warning: hsl(36, 100%, 50%);       /* Amber Gold */
  --color-danger: hsl(354, 85%, 53%);        /* Fire Red */
  --color-danger-glow: hsla(354, 85%, 53%, 0.4);
  --color-success: hsl(142, 70%, 45%);       /* Emerald Green */

  /* Dark Theme Default */
  --bg-app: linear-gradient(135deg, hsl(230, 25%, 8%) 0%, hsl(240, 20%, 5%) 100%);
  --bg-panel: hsla(230, 20%, 12%, 0.7);
  --bg-panel-solid: hsl(230, 20%, 12%);
  --bg-panel-hover: hsla(230, 20%, 18%, 0.85);
  --bg-card: hsla(230, 20%, 15%, 0.6);
  --bg-input: hsla(230, 20%, 8%, 0.6);
  --text-main: hsl(210, 20%, 98%);
  --text-muted: hsl(210, 10%, 65%);
  --text-inverse: hsl(230, 20%, 10%);
  --border-color: hsla(210, 20%, 98%, 0.08);
  --border-focus: hsla(174, 100%, 41%, 0.5);
  --glass-blur: blur(20px);
  --glass-effect: saturate(180%) backdrop-filter: var(--glass-blur);
  --glass-border: 1px solid var(--border-color);
}

[data-theme="light"] {
  --bg-app: linear-gradient(135deg, hsl(210, 40%, 96%) 0%, hsl(214, 32%, 91%) 100%);
  --bg-panel: hsla(210, 30%, 99%, 0.7);
  --bg-panel-solid: hsl(210, 30%, 99%);
  --bg-panel-hover: hsla(210, 20%, 93%, 0.85);
  --bg-card: hsla(0, 0%, 100%, 0.7);
  --bg-input: hsla(210, 20%, 94%, 0.7);
  --text-main: hsl(222, 47%, 11%);
  --text-muted: hsl(215, 16%, 47%);
  --text-inverse: hsl(210, 20%, 98%);
  --border-color: hsla(222, 47%, 11%, 0.08);
  --border-focus: hsla(262, 80%, 60%, 0.5);
  --glass-border: 1px solid var(--border-color);
}

/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-glow) transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

body {
  font-family: var(--font-family);
  background: var(--bg-app);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: background var(--transition-normal), color var(--transition-normal);
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* --- App Layout --- */
#app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* --- Top Navigation Header --- */
header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  z-index: 100;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.logo:active {
  transform: scale(0.95);
}

.logo-badge {
  font-size: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-warning), var(--color-secondary));
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

/* Navbar Tabs */
.nav-tabs {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  padding: 6px;
  border-radius: var(--border-radius-xl);
  border: var(--glass-border);
  gap: 4px;
}

.nav-tab {
  padding: 10px 20px;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-tab i {
  font-size: 16px;
}

.nav-tab:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.nav-tab.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.nav-tab .badge {
  background: var(--color-danger);
  color: #fff;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: -2px;
  font-weight: 700;
  border: 2px solid var(--bg-panel-solid);
}

/* Header Options (Theme, Profile, Notifications) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-input);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 18px;
  position: relative;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  background: var(--bg-panel-hover);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.user-profile-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: var(--bg-input);
  padding: 6px 14px 6px 6px;
  border-radius: var(--border-radius-xl);
  border: var(--glass-border);
  transition: background var(--transition-fast);
}

.user-profile-widget:hover {
  background: var(--bg-panel-hover);
}

.user-profile-widget img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.user-profile-widget .username {
  font-size: 13px;
  font-weight: 600;
}

.user-profile-widget .vip-badge {
  font-size: 9px;
  color: var(--color-warning);
  font-weight: 700;
}

/* --- Main Content Container --- */
main {
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 70px);
}

.tab-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.tab-view.active-view {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   1. ULAKORA CHAT SYSTEM STYLE
   ======================================================== */
.chat-container {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Sidebar List */
.chat-sidebar {
  width: 360px;
  border-right: var(--glass-border);
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
}

.chat-sidebar-header {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-search-wrapper {
  display: flex;
  background: var(--bg-input);
  border-radius: var(--border-radius-md);
  padding: 8px 14px;
  align-items: center;
  gap: 10px;
  border: var(--glass-border);
}

.chat-search-wrapper input {
  flex: 1;
  font-size: 14px;
}

.chat-search-wrapper input:focus {
  outline: none;
}

.chat-type-filters {
  display: flex;
  gap: 8px;
}

.chat-filter-btn {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-input);
  transition: all var(--transition-fast);
}

.chat-filter-btn:hover, .chat-filter-btn.active {
  color: #fff;
  background: var(--color-primary);
}

.chat-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.chat-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 14px;
  cursor: pointer;
  transition: background var(--transition-fast);
  position: relative;
}

.chat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 74px;
  right: 16px;
  height: 1px;
  background: var(--border-color);
}

.chat-item:hover {
  background: var(--bg-panel-hover);
}

.chat-item.active {
  background: var(--bg-panel-hover);
  border-left: 4px solid var(--color-primary);
}

.chat-avatar-wrapper {
  position: relative;
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.online-status {
  width: 12px;
  height: 12px;
  background: var(--color-success);
  border-radius: 50%;
  position: absolute;
  bottom: 2px;
  right: 2px;
  border: 2px solid var(--bg-panel-solid);
}

.chat-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.chat-item-name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-item-time {
  font-size: 11px;
  color: var(--text-muted);
}

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

.chat-item-message {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-unread-count {
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat Active Area */
.chat-active-window {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: hsla(240, 20%, 4%, 0.3);
  position: relative;
}

.chat-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  gap: 16px;
}

.chat-empty-state i {
  font-size: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chat-window-header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: var(--bg-panel);
  border-bottom: var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

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

.chat-header-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-size: 15px;
  font-weight: 600;
}

.chat-header-status {
  font-size: 11px;
  color: var(--color-primary);
}

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

/* Chat Message Area */
.chat-messages-container {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message-bubble-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 65%;
  position: relative;
  animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-bubble-wrapper.sent {
  align-self: flex-end;
}

.message-bubble-wrapper.received {
  align-self: flex-start;
}

.message-bubble {
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.sent .message-bubble {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-bottom-right-radius: 4px;
}

.received .message-bubble {
  background: var(--bg-panel);
  color: var(--text-main);
  border: var(--glass-border);
  border-bottom-left-radius: 4px;
}

.message-info-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 10px;
  color: var(--text-muted);
}

.message-actions-menu {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  display: none;
  background: var(--bg-panel-solid);
  border: var(--glass-border);
  border-radius: var(--border-radius-sm);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.sent .message-actions-menu {
  right: unset;
  left: calc(100% + 8px);
}

.message-bubble-wrapper:hover .message-actions-menu {
  display: flex;
}

.msg-action-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.msg-action-btn:hover {
  background: var(--bg-panel-hover);
  color: var(--text-main);
}

/* Chat Input Bar */
.chat-input-bar {
  padding: 16px 24px;
  background: var(--bg-panel);
  border-top: var(--glass-border);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.chat-input-wrapper {
  flex: 1;
  background: var(--bg-input);
  border-radius: var(--border-radius-xl);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  padding: 8px 18px;
  gap: 12px;
}

.chat-input-wrapper input {
  flex: 1;
  font-size: 14px;
}

.chat-input-wrapper input:focus {
  outline: none;
}

.chat-input-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Attachment Menu Drawer */
.attachment-menu {
  position: absolute;
  bottom: 80px;
  left: 24px;
  background: var(--bg-panel-solid);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 280px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.attachment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.attachment-item:hover {
  transform: translateY(-4px);
}

.attachment-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.attachment-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Call Simulator Overlays --- */
.call-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeIn var(--transition-normal);
}

.call-card {
  width: 360px;
  padding: 40px 24px;
  background: var(--bg-panel-solid);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.call-avatar-wrapper {
  position: relative;
}

.call-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-primary);
}

.pulse-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  animation: callPulse 1.8s infinite ease-out;
  opacity: 0;
}

.call-name {
  font-size: 20px;
  font-weight: 700;
}

.call-status {
  font-size: 14px;
  color: var(--color-primary);
}

.call-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.call-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: transform var(--transition-fast);
}

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

.call-btn.answer {
  background: var(--color-success);
}

.call-btn.decline {
  background: var(--color-danger);
}

/* ========================================================
   2. ULAKORA SOCIAL VIEW STYLE
   ======================================================== */
.social-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  gap: 24px;
}

.social-sidebar, .social-right-bar {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.social-feed {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sidebar Menu Card */
.social-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: var(--glass-blur);
}

.social-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  border-left: 3px solid var(--color-primary);
  padding-left: 10px;
}

.social-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-menu-item:hover, .social-menu-item.active {
  background: var(--bg-panel-hover);
  color: var(--text-main);
}

.social-menu-item i {
  font-size: 16px;
}

/* Stories Carousel */
.stories-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
}

.story-circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.story-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--bg-app), var(--bg-app)), linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  background-origin: border-box;
  background-clip: content-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.story-ring img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.story-circle-wrapper:hover .story-ring {
  transform: scale(1.05);
}

.story-username {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 64px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* Create Post Card */
.create-post-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.create-post-top {
  display: flex;
  gap: 12px;
}

.create-post-top img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.create-post-top textarea {
  flex: 1;
  background: var(--bg-input);
  border-radius: 16px;
  border: var(--glass-border);
  padding: 12px 16px;
  font-size: 14px;
  resize: none;
  min-height: 50px;
  height: auto;
}

.create-post-top textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.create-post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
}

.post-attach-btns {
  display: flex;
  gap: 12px;
}

.post-attach-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.post-attach-btn:hover {
  background: var(--bg-panel-hover);
  color: var(--text-main);
}

.post-submit-btn {
  padding: 8px 20px;
  border-radius: var(--border-radius-xl);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px var(--color-primary-glow);
}

/* Feed Posts */
.feed-post {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.post-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.post-meta {
  display: flex;
  flex-direction: column;
}

.post-author-name {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blue-tick {
  color: var(--color-primary);
  font-size: 12px;
}

.post-time {
  font-size: 11px;
  color: var(--text-muted);
}

.post-content-text {
  font-size: 14px;
  line-height: 1.6;
}

/* Dynamic Polls in Posts */
.post-poll-box {
  background: var(--bg-input);
  border-radius: var(--border-radius-md);
  padding: 16px;
  border: var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poll-option-row {
  position: relative;
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--transition-fast);
}

.poll-option-row:hover {
  border-color: var(--color-primary);
}

.poll-percent-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-primary-glow);
  width: 0%;
  transition: width 0.5s ease-out;
  z-index: 0;
}

.poll-option-row span {
  position: relative;
  z-index: 1;
}

.post-media-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  max-height: 380px;
  border: var(--glass-border);
}

.post-media-container img, .post-media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-actions-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
}

.post-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  padding: 6px;
  border-radius: 8px;
}

.post-action-btn:hover {
  background: var(--bg-panel-hover);
  color: var(--text-main);
}

.post-action-btn.active-like {
  color: var(--color-primary);
}

.post-comments-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comment-item {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.comment-item img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.comment-bubble {
  flex: 1;
  background: var(--bg-input);
  border-radius: 12px;
  padding: 8px 12px;
  border: var(--glass-border);
}

.comment-author {
  font-weight: 700;
  margin-bottom: 2px;
}

.comment-input-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comment-input-box img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.comment-input-box input {
  flex: 1;
  background: var(--bg-input);
  border: var(--glass-border);
  padding: 8px 14px;
  border-radius: var(--border-radius-xl);
  font-size: 12px;
}

.comment-input-box input:focus {
  outline: none;
}

/* ========================================================
   3. ULAKORA REELS VIEW STYLE
   ======================================================== */
.reels-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  gap: 24px;
}

/* Left Profile & Stats Grid */
.reels-profile-column {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.reels-grid-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Reels Mobile Simulator Card */
.reels-simulator {
  width: 350px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  border: 12px solid #202025;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  align-self: center;
  margin: 0 auto;
}

.reels-video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111;
}

.reels-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reels-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  z-index: 10;
  pointer-events: none;
}

/* Overlay Sidebar buttons */
.reels-right-controls {
  position: absolute;
  right: 12px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 20;
}

.reels-control-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 4px;
}

.reels-control-btn .circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--transition-fast);
}

.reels-control-btn:hover .circle {
  transform: scale(1.1);
}

.reels-control-btn span {
  font-size: 11px;
  font-weight: 500;
}

.reels-control-btn.liked .circle i {
  color: var(--color-danger);
}

/* Overlay Details Bottom */
.reels-bottom-details {
  position: absolute;
  left: 16px;
  bottom: 20px;
  right: 70px;
  z-index: 20;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reels-uploader {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reels-uploader img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

.reels-uploader span {
  font-weight: 600;
  font-size: 13px;
}

.reels-description {
  font-size: 12px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Explore Grid */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.explore-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  border: var(--glass-border);
}

.explore-item img, .explore-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.explore-item:hover img, .explore-item:hover video {
  transform: scale(1.08);
}

.explore-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: #fff;
  font-weight: 600;
  gap: 12px;
}

.explore-item:hover .explore-item-overlay {
  opacity: 1;
}

/* SVG Chart details */
.analytics-chart-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

/* ========================================================
   4. ULAKORA MARKET SYSTEM STYLE
   ======================================================== */
.market-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  gap: 24px;
}

.market-sidebar {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.market-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.market-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.market-search-box {
  flex: 1;
  max-width: 400px;
  background: var(--bg-panel);
  border: var(--glass-border);
  padding: 10px 16px;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  gap: 10px;
}

.market-search-box input {
  flex: 1;
}

.market-search-box input:focus {
  outline: none;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.product-image-box {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 4px 10px var(--color-primary-glow);
}

.product-info-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 32px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
  margin-top: 4px;
}

.product-seller {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-seller img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.buy-now-btn {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 6px 12px;
  font-weight: 600;
  text-align: center;
  font-size: 11px;
  transition: background var(--transition-fast);
}

.buy-now-btn:hover {
  background: var(--color-primary);
}

/* Modal Form Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn var(--transition-normal);
}

.modal-content-card {
  width: 500px;
  max-width: 90%;
  background: var(--bg-panel-solid);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.modal-title {
  font-size: 18px;
  font-weight: 700;
}

.close-modal-btn {
  font-size: 20px;
  color: var(--text-muted);
}

.close-modal-btn:hover {
  color: var(--text-main);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  background: var(--bg-input);
  border: var(--glass-border);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
}

.commission-alert {
  background: var(--color-secondary-glow);
  border: 1px solid var(--color-secondary);
  border-radius: var(--border-radius-sm);
  padding: 10px;
  font-size: 11px;
  color: var(--text-main);
}

/* ========================================================
   5. ULAKORA NEARBY VIEW STYLE
   ======================================================== */
.nearby-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nearby-sidebar {
  width: 320px;
  background: var(--bg-panel);
  border-right: var(--glass-border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 10;
}

.nearby-map-area {
  flex: 1;
  position: relative;
  background: #151821;
}

.nearby-map-bg {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, #202534 0%, #151821 100%);
  position: relative;
  overflow: hidden;
}

/* Radar Animation */
.radar-ring-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--color-primary-glow), transparent 60%);
  animation: radarRotate 4s linear infinite;
}

.radar-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(174, 100%, 41%, 0.15);
}

.radar-circle-1 { width: 100px; height: 100px; }
.radar-circle-2 { width: 250px; height: 250px; }
.radar-circle-3 { width: 400px; height: 400px; }

/* Nearby Pins on Map */
.map-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: transform var(--transition-fast);
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.map-pin-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  object-fit: cover;
  background: var(--bg-panel-solid);
}

.map-pin-glow {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  animation: callPulse 2s infinite ease-out;
}

/* ========================================================
   6. ULAKORA EVENTS VIEW STYLE
   ======================================================== */
.events-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  gap: 24px;
}

.events-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.events-sidebar {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.event-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast);
}

.event-card:hover {
  transform: translateY(-4px);
}

.event-banner-box {
  height: 160px;
  position: relative;
}

.event-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: var(--border-radius-sm);
  padding: 4px 8px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.event-info-box {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.event-title {
  font-size: 15px;
  font-weight: 700;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.event-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: 4px;
}

.join-event-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--border-radius-xl);
  font-size: 12px;
}

/* Ticket Modal Style */
.ticket-box {
  background: linear-gradient(135deg, #202330 0%, #151720 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 320px;
  margin: 0 auto;
}

.ticket-box::before, .ticket-box::after {
  content: '';
  position: absolute;
  top: 60%;
  width: 24px;
  height: 24px;
  background: var(--bg-panel-solid);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.ticket-box::before { left: -12px; }
.ticket-box::after { right: -12px; }

.ticket-line {
  position: absolute;
  top: 62%;
  left: 20px;
  right: 20px;
  height: 1px;
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
}

.qr-canvas-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

/* ========================================================
   7. ULAKORA AI VIEW STYLE
   ======================================================== */
.ai-container {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 24px;
  gap: 24px;
}

.ai-sidebar {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.ai-chat-window {
  flex: 1;
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ========================================================
   8. ROOT / SUPER ADMIN PANEL SYSTEM STYLE
   ======================================================== */
.admin-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-panel-solid);
  border-left: var(--glass-border);
  z-index: 500;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.admin-drawer.open {
  right: 0;
}

.admin-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-danger));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-log-terminal {
  background: #0d0f14;
  border: 1px solid #1f2430;
  border-radius: var(--border-radius-md);
  padding: 12px;
  height: 160px;
  overflow-y: auto;
  font-family: monospace;
  font-size: 11px;
  color: var(--color-success);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.emergency-btn {
  background: linear-gradient(135deg, var(--color-danger), #ff2a2a);
  color: #fff;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 0 20px var(--color-danger-glow);
  text-transform: uppercase;
  animation: emergencyPulse 2s infinite;
}

/* System Emergency Lockout Overlay */
#emergency-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  color: #ff3333;
}

.lockout-box {
  text-align: center;
  border: 2px solid #ff3333;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 0, 0, 0.05);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
  animation: pulseGlow 1.5s infinite alternate;
}

.lockout-box h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ========================================================
   KEYFRAME ANIMATIONS
   ======================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes callPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes radarRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes emergencyPulse {
  0% { box-shadow: 0 0 10px var(--color-danger-glow); }
  50% { box-shadow: 0 0 25px rgba(255, 42, 42, 0.8); }
  100% { box-shadow: 0 0 10px var(--color-danger-glow); }
}

@keyframes pulseGlow {
  0% { border-color: #ff3333; box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }
  100% { border-color: #ff7777; box-shadow: 0 0 40px rgba(255, 0, 0, 0.6); }
}

/* ========================================================
   RESPONSIVE LAYOUT OVERRIDES (TABLET & MOBILE)
   ======================================================== */
@media (max-width: 1024px) {
  .social-sidebar, .social-right-bar, .market-sidebar, .events-sidebar, .ai-sidebar {
    display: none;
  }
  .social-feed, .market-main, .events-main {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 12px;
  }
  .logo-section span {
    font-size: 20px;
  }
  .nav-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: var(--glass-border);
    justify-content: space-around;
    padding: 10px;
    z-index: 100;
    background: var(--bg-panel-solid);
  }
  .nav-tab span {
    display: none;
  }
  .nav-tab {
    padding: 10px;
  }
  main {
    height: calc(100vh - 130px);
  }
  .chat-sidebar {
    width: 100%;
  }
  .chat-active-window {
    display: none;
  }
  .chat-active-window.mobile-open {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
  }
  .reels-container {
    flex-direction: column;
    padding: 12px;
  }
  .reels-profile-column {
    width: 100%;
  }
  .admin-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ========================================================
   9. MARKETING LANDING PAGE STYLES
   ======================================================== */
.landing-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 40px 24px;
  gap: 60px;
  scroll-behavior: smooth;
}

.landing-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-height: 450px;
}

.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-badge {
  background: var(--color-primary-glow);
  border: 1px solid var(--color-primary);
  color: var(--text-main);
  padding: 6px 16px;
  border-radius: var(--border-radius-xl);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  width: 100%;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 4px 20px var(--color-primary-glow);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(174, 100%, 41%, 0.5);
}

.cta-btn-secondary {
  border: 2px solid var(--border-color);
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--border-radius-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.cta-btn-secondary:hover {
  border-color: var(--color-secondary);
  background: var(--bg-panel-hover);
  transform: translateY(-3px);
}

.hero-image-mockup {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-glow-back {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.mockup-card-wrapper {
  position: relative;
  z-index: 1;
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  width: 320px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--glass-blur);
  animation: floatMockup 4s ease-in-out infinite alternate;
}

@keyframes floatMockup {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(2deg); }
}

/* Feature grid for landing */
.landing-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
}

.landing-section-title span {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.feature-highlight-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.feature-highlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.feature-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}

/* References / Partners logos */
.partners-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-logos-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  opacity: 0.6;
}

.partner-logo-item {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.partner-logo-item i {
  font-size: 24px;
}

/* Testimonials / Referanslar */
.testimonials-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.testimonial-item-card {
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-item-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 64px;
  color: var(--color-primary-glow);
  font-family: serif;
  font-weight: 800;
  line-height: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-row img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

/* Quote Form Section */
.quote-form-section-container {
  display: flex;
  background: var(--bg-panel);
  border: var(--glass-border);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
}

.quote-info-side {
  flex: 1;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.quote-form-side {
  flex: 1.2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-clickable-link {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  transition: transform var(--transition-fast);
}

.contact-clickable-link:hover {
  transform: translateX(5px);
}

/* Responsive overrides for landing page */
@media (max-width: 768px) {
  .landing-hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-image-mockup {
    display: none;
  }
  .quote-form-section-container {
    flex-direction: column;
  }
  .quote-info-side, .quote-form-side {
    padding: 24px;
  }
}

/* Switch Toggle Slider styling */
.switch-box {
  display: inline-block;
  vertical-align: middle;
}
.switch-box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: var(--border-color);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.switch-box input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  background: #fff;
  transition: transform var(--transition-fast);
}
.switch-box input[type="checkbox"]:checked {
  background: var(--color-primary);
}
.switch-box input[type="checkbox"]:checked::before {
  transform: translateX(16px);
}

/* Guest Lockout Dashboard Styling */
.guest-lockout {
  filter: blur(8px) grayscale(40%);
  pointer-events: none;
  user-select: none;
}

/* Toast notifications */
.toast-notification {
  min-width: 280px;
  max-width: 340px;
  background: var(--bg-panel-solid);
  border: var(--glass-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  animation: toastSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), fadeOut 0.5s ease 4.5s forwards;
}

.toast-notification.vip-toast {
  border-left-color: var(--color-warning);
}

.toast-notification.system-toast {
  border-left-color: var(--color-secondary);
}

.toast-icon {
  font-size: 20px;
  color: var(--color-primary);
}

.toast-notification.vip-toast .toast-icon {
  color: var(--color-warning);
}

.toast-notification.system-toast .toast-icon {
  color: var(--color-secondary);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-size: 13px;
  font-weight: 700;
}

.toast-desc {
  font-size: 11px;
  color: var(--text-muted);
}

@keyframes toastSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Profile Zoom Transition & Slide Up animations */
.profile-avatar-container img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.profile-avatar-container img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 16px var(--color-primary-glow);
}

@keyframes profileSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-container {
  animation: profileSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-grid-item {
  position: relative;
  overflow: hidden;
}

.mock-grid-item img {
  transition: transform 0.3s ease;
}

.mock-grid-item:hover img {
  transform: scale(1.08);
}
