/* ═══════════════════════════════════════════════════════════════
   WONDERFUL SOLUTIONS — LUXURY COMPONENTS
   Premium UI Components, Glassmorphism System, Enterprise Features
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   BLOG / ARTICLE CARDS
   ═══════════════════════════════════════════════════════════════ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border-mid); }
.blog-card-img-wrap { position: relative; overflow: hidden; }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-sm);
  backdrop-filter: blur(12px);
  color: var(--primary);
  font-size: 10.5px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 1.5px;
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.blog-card-meta span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-light);
}
.blog-card-meta i { font-size: 11px; color: var(--primary); }
.blog-card-title {
  font-size: 17px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 12px; line-height: 1.45; letter-spacing: -0.01em;
  transition: var(--transition-fast);
}
.blog-card-title:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 14px; color: var(--text-medium); line-height: 1.75; flex: 1; font-weight: 300; }
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-light);
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1px;
  transition: var(--transition-fast);
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more i { font-size: 11px; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* Blog Sidebar */
.blog-sidebar-card {
  background: var(--glass-bg-sm);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: var(--glass-blur-xs);
  margin-bottom: 24px;
}
.blog-sidebar-title {
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-light);
}
.recent-post { display: flex; gap: 14px; margin-bottom: 18px; }
.recent-post:last-child { margin-bottom: 0; }
.recent-post-img { width: 64px; height: 64px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.recent-post-title { font-size: 13.5px; font-weight: 500; color: var(--text-dark); line-height: 1.45; margin-bottom: 4px; transition: var(--transition-fast); }
.recent-post-title:hover { color: var(--primary); }
.recent-post-date { font-size: 11.5px; color: var(--text-light); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 6px 14px; border-radius: var(--r-full);
  background: var(--primary-glass); border: 1px solid var(--border-mid);
  color: var(--primary); font-size: 12px; font-weight: 500;
  transition: var(--transition-fast); cursor: pointer;
}
.tag-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-sm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-2xl);
  padding: 44px;
  box-shadow: var(--glass-shadow);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-glass);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.contact-info-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--text-dark); }
.contact-info-sub { font-size: 13px; color: var(--text-medium); margin-top: 2px; font-weight: 300; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-2xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

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

/* Map */
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  height: 300px;
}
.map-embed iframe { width: 100%; height: 100%; display: block; filter: grayscale(20%) contrast(105%); }

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD — LUXURY ENTERPRISE
   ═══════════════════════════════════════════════════════════════ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-secondary);
  padding-top: 74px; /* nav height */
}

.dashboard-sidebar {
  width: 268px;
  min-height: calc(100vh - 74px);
  background: var(--bg-primary);
  border-right: 1px solid var(--border-light);
  padding: 32px 0;
  position: sticky; top: 74px; height: calc(100vh - 74px);
  overflow-y: auto;
  flex-shrink: 0;
}

.sidebar-section { padding: 0 16px; margin-bottom: 8px; }
.sidebar-label {
  font-size: 10px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 0 12px 8px;
}
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; color: var(--text-medium); font-size: 13.5px; font-weight: 400;
  border-radius: var(--r-md); transition: var(--transition-fast);
  cursor: pointer; border: none; background: none; width: 100%; text-align: left;
  text-decoration: none;
}
.sidebar-link i { width: 18px; font-size: 15px; color: var(--text-light); transition: var(--transition-fast); flex-shrink: 0; }
.sidebar-link:hover { background: var(--primary-glass); color: var(--primary); }
.sidebar-link:hover i { color: var(--primary); }
.sidebar-link.active { background: var(--primary-glass); color: var(--primary); font-weight: 500; border: 1px solid var(--border-mid); }
.sidebar-link.active i { color: var(--primary); }
.sidebar-divider { height: 1px; background: var(--border-light); margin: 10px 16px; }

.sidebar-user {
  padding: 16px;
  margin: 16px 16px 0;
  background: var(--bg-secondary);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-user-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.sidebar-user-name { font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.sidebar-user-role { font-size: 11px; color: var(--primary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.dashboard-main { flex: 1; padding: 40px; overflow-x: hidden; }
.dashboard-header { margin-bottom: 36px; }
.dashboard-greeting {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--text-dark);
  margin-bottom: 6px; font-weight: 400;
}
.dashboard-subtext { font-size: 14px; color: var(--text-medium); font-weight: 300; }
.dashboard-date { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* Dashboard stat cards */
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur-xs);
  border-radius: var(--r-xl);
  padding: 26px;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.stat-card-icon {
  width: 44px; height: 44px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.stat-card-icon.blue   { background: var(--primary-glass); color: var(--primary); border: 1px solid var(--border-mid); }
.stat-card-icon.green  { background: rgba(34,197,94,0.12); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.stat-card-icon.amber  { background: rgba(245,158,11,0.12); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }
.stat-card-icon.purple { background: rgba(139,92,246,0.12); color: #7c3aed; border: 1px solid rgba(139,92,246,0.2); }
.stat-card-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: 4px;
}
.stat-card-badge.up   { background: rgba(34,197,94,0.12); color: #16a34a; }
.stat-card-badge.down { background: rgba(239,68,68,0.12); color: #dc2626; }
.stat-card-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--text-dark); margin-bottom: 4px; }
.stat-card-label { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* Dashboard panels */
.dashboard-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}
.panel-title { font-size: 14px; font-weight: 600; color: var(--text-dark); letter-spacing: -0.01em; }
.panel-action { font-size: 12.5px; font-weight: 500; color: var(--primary); cursor: pointer; transition: var(--transition-fast); }
.panel-action:hover { text-decoration: underline; }
.panel-body { padding: 24px; }

/* Tables — enterprise */
.ws-table { width: 100%; border-collapse: collapse; }
.ws-table th {
  padding: 12px 16px;
  font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--bg-secondary);
  text-align: left; white-space: nowrap;
}
.ws-table th:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.ws-table th:last-child  { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.ws-table td {
  padding: 14px 16px;
  font-size: 13.5px; color: var(--text-medium);
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.ws-table tr:last-child td { border-bottom: none; }
.ws-table tbody tr:hover td { background: var(--primary-glass); }
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.status-pill.active  { background: rgba(34,197,94,0.12); color: #16a34a; }
.status-pill.pending { background: rgba(245,158,11,0.12); color: #d97706; }
.status-pill.closed  { background: rgba(239,68,68,0.12); color: #dc2626; }
.status-pill.info    { background: var(--primary-glass); color: var(--primary); }
.status-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Progress bars */
.progress-bar-wrap { background: var(--bg-tertiary); border-radius: var(--r-full); height: 8px; overflow: hidden; margin-top: 8px; }
.progress-bar-fill { height: 100%; background: var(--brand-gradient); border-radius: var(--r-full); transition: width 1.2s var(--ease-out); }

/* Dashboard enrolled course card */
.enrolled-course { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.enrolled-course:last-child { border-bottom: none; padding-bottom: 0; }
.enrolled-course-thumb { width: 60px; height: 60px; border-radius: var(--r-md); object-fit: cover; flex-shrink: 0; }
.enrolled-course-info { flex: 1; }
.enrolled-course-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.enrolled-course-meta { font-size: 12px; color: var(--text-light); }
.enrolled-course-progress { font-size: 13px; font-weight: 600; color: var(--primary); }

@media (max-width: 1100px) { .stats-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 24px; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN PANEL — LUXURY GLASS ENTERPRISE
   ═══════════════════════════════════════════════════════════════ */
.admin-body {
  font-family: var(--font-body);
  background: var(--bg-secondary);
  min-height: 100vh;
  display: flex;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-footer);
  min-height: 100vh;
  position: fixed; top: 0; left: 0;
  display: flex; flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

.admin-sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-logo { display: flex; align-items: center; gap: 0; }
.admin-sidebar-logo img { height: 52px; /* wonderfulwhite.png on dark sidebar — no filter needed */ }
.admin-sidebar-logo-text { margin-left: 12px; }
.admin-sidebar-logo-name { font-family: var(--font-display); font-size: 16px; color: #fff; line-height: 1.1; }
.admin-sidebar-logo-badge { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; }

.admin-sidebar-nav { flex: 1; padding: 20px 12px; }
.admin-nav-section { margin-bottom: 8px; }
.admin-nav-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.25);
  text-transform: uppercase; letter-spacing: 2.5px;
  padding: 8px 12px; display: block;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; color: rgba(255,255,255,0.50);
  font-size: 13px; font-weight: 400;
  border-radius: var(--r-md); transition: var(--transition-fast);
  cursor: pointer; border: none; background: none;
  width: 100%; text-align: left; text-decoration: none;
}
.admin-nav-link i { width: 18px; font-size: 14px; flex-shrink: 0; }
.admin-nav-link:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.admin-nav-link.active { background: var(--primary-glass); color: var(--primary-light); border: 1px solid rgba(93,187,238,0.18); }
.admin-nav-link.active i { color: var(--primary-light); }

.admin-sidebar-footer {
  padding: 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-user { display: flex; align-items: center; gap: 12px; }
.admin-sidebar-avatar {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.admin-sidebar-user-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); }
.admin-sidebar-user-role { font-size: 11px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.5px; }

.admin-content {
  margin-left: 260px;
  flex: 1;
  display: flex; flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-xs);
}
.admin-topbar-title { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.admin-topbar-actions { display: flex; align-items: center; gap: 12px; }
.admin-notif-btn {
  width: 38px; height: 38px;
  background: var(--glass-bg-sm); border: 1px solid var(--border);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-medium); font-size: 15px; cursor: pointer;
  position: relative; transition: var(--transition-fast);
}
.admin-notif-btn:hover { background: var(--primary-glass); color: var(--primary); border-color: var(--border-mid); }
.admin-notif-dot {
  position: absolute; top: 8px; right: 9px;
  width: 8px; height: 8px;
  background: #ef4444; border-radius: 50%;
  border: 2px solid var(--bg-primary);
}
.admin-topbar-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass-bg-sm); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 8px 18px;
  backdrop-filter: var(--glass-blur-xs);
}
.admin-topbar-search input {
  background: none; border: none; outline: none;
  font-size: 13px; color: var(--text-dark); width: 220px;
  font-family: inherit;
}
.admin-topbar-search input::placeholder { color: var(--text-light); }
.admin-topbar-search i { color: var(--text-light); font-size: 13px; }

.admin-inner { padding: 36px; flex: 1; }
.admin-page-header { margin-bottom: 32px; }
.admin-page-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--text-dark); margin-bottom: 4px; }
.admin-page-sub { font-size: 14px; color: var(--text-medium); font-weight: 300; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur-xs);
  border-radius: var(--r-xl); padding: 24px;
  transition: var(--transition);
}
.admin-stat-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.admin-stat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.admin-stat-icon { width: 42px; height: 42px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.admin-stat-trend { font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: var(--r-full); }
.admin-stat-trend.up   { background: rgba(34,197,94,0.12); color: #16a34a; }
.admin-stat-trend.down { background: rgba(239,68,68,0.12); color: #dc2626; }
.admin-stat-value { font-family: var(--font-display); font-size: 2rem; color: var(--text-dark); margin-bottom: 2px; }
.admin-stat-label { font-size: 12.5px; color: var(--text-muted); }

.admin-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
}
.admin-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}
.admin-panel-title { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.admin-panel-body { padding: 0; }

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table thead th {
  padding: 12px 20px;
  font-size: 10.5px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--bg-secondary); text-align: left; white-space: nowrap;
}
.admin-table tbody td {
  padding: 14px 20px;
  font-size: 13.5px; color: var(--text-medium);
  border-bottom: 1px solid var(--border-light); vertical-align: middle;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--primary-glass); }
.admin-action-btn {
  width: 30px; height: 30px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; transition: var(--transition-fast); cursor: pointer;
  border: 1px solid var(--border); background: var(--glass-bg-sm);
  color: var(--text-medium);
}
.admin-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.admin-action-btn.danger:hover { background: #ef4444; border-color: #ef4444; color: #fff; }

/* Chart container */
.chart-container { position: relative; }

@media (max-width: 1100px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s var(--ease-out); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .admin-inner { padding: 20px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient); opacity: 0; transition: opacity 0.25s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--border-mid); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 64px; height: 64px; border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 22px; flex-shrink: 0;
}
.svc-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.svc-desc { font-size: 14px; color: var(--text-medium); line-height: 1.75; flex: 1; margin-bottom: 22px; font-weight: 300; }
.svc-features { list-style: none; padding: 0; margin: 0 0 26px; }
.svc-features li {
  font-size: 13px; color: var(--text-medium); padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border-light);
}
.svc-features li:last-child { border-bottom: none; }
.svc-features li i { color: var(--primary); font-size: 11px; flex-shrink: 0; }
.svc-tag {
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--primary-glass); color: var(--primary-dark);
  border: 1px solid var(--border-mid);
}
[data-theme="dark"] .svc-tag { color: var(--primary); }
.svc-badge-strip { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }

/* Request form */
.request-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-sm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-2xl);
  padding: 44px;
  max-width: 700px; margin: 0 auto;
  box-shadow: var(--glass-shadow);
}
.form-section-title {
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.urgency-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.urgency-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 12px;
  cursor: pointer; transition: var(--transition-fast); text-align: center;
  background: var(--glass-bg-sm); backdrop-filter: var(--glass-blur-xs);
}
.urgency-card:hover { border-color: var(--primary); }
.urgency-card.selected { border-color: var(--primary); background: var(--primary-glass); }
.urgency-icon { font-size: 22px; margin-bottom: 6px; }
.urgency-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.urgency-desc { font-size: 11px; color: var(--text-light); margin-top: 3px; }

/* Process strip */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.process-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--brand-gradient); color: #fff;
  font-family: var(--font-display); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-primary);
}
.process-title { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.process-desc { font-size: 13px; color: var(--text-medium); line-height: 1.6; font-weight: 300; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .urgency-cards { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   MATERIALS PAGE
   ═══════════════════════════════════════════════════════════════ */
.material-card {
  background: var(--glass-bg-sm);
  border: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur-xs);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; align-items: center; gap: 20px;
  transition: var(--transition);
}
.material-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.material-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.material-icon.pdf  { background: rgba(239,68,68,0.12); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.material-icon.doc  { background: rgba(29,112,184,0.12); color: var(--primary-dark); border: 1px solid var(--border-mid); }
.material-icon.vid  { background: rgba(139,92,246,0.12); color: #7c3aed; border: 1px solid rgba(139,92,246,0.2); }
.material-icon.zip  { background: rgba(245,158,11,0.12); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }
.material-info { flex: 1; }
.material-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.material-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 12px; }
.material-actions { display: flex; gap: 8px; }

/* ═══════════════════════════════════════════════════════════════
   AUTH PAGES — LOGIN / SIGNUP
   ═══════════════════════════════════════════════════════════════ */
.auth-layout {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-primary);
}
.auth-visual {
  background: var(--brand-gradient);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.auth-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.auth-visual-content { position: relative; z-index: 1; text-align: center; max-width: 480px; }
.auth-visual-logo { height: 70px; width: auto; margin: 0 auto 40px; /* white logo on dark gradient panel — no filter needed */ }
.auth-visual-title {
  font-family: var(--font-display); font-size: 2.8rem;
  color: #fff; margin-bottom: 20px; line-height: 1.15;
}
.auth-visual-subtitle { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; font-weight: 300; margin-bottom: 44px; }
.auth-visual-stats { display: flex; gap: 32px; justify-content: center; }
.auth-stat { text-align: center; }
.auth-stat-num { font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1; }
.auth-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.auth-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 80px;
  background: var(--bg-primary);
  overflow-y: auto;
}
.auth-form-wrap { width: 100%; max-width: 440px; }
.auth-form-logo { height: 56px; width: auto; margin-bottom: 36px; display: block; }
.auth-form-title {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--text-dark); margin-bottom: 8px;
}
.auth-form-sub { font-size: 14px; color: var(--text-medium); margin-bottom: 36px; font-weight: 300; }
.auth-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.auth-divider span { font-size: 12px; color: var(--text-light); white-space: nowrap; }
.auth-switch { font-size: 13.5px; color: var(--text-medium); text-align: center; margin-top: 28px; }
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

@media (max-width: 900px) { .auth-layout { grid-template-columns: 1fr; } .auth-visual { display: none; } .auth-form-side { padding: 48px 28px; } }

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENTS / NOTICE BAR
   ═══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--primary-dark);
  padding: 10px 0;
  text-align: center; position: relative;
}
.announcement-bar p {
  font-size: 13px; color: #fff; font-weight: 500;
}
.announcement-bar a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.announcement-bar a:hover { color: #fff; }
.announcement-close {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 16px; padding: 4px; line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   LIVE CHAT WIDGET — GLASS
   ═══════════════════════════════════════════════════════════════ */
.chat-bubble {
  position: fixed; bottom: 28px; left: 28px;
  width: 52px; height: 52px;
  background: var(--brand-gradient);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; cursor: pointer;
  box-shadow: var(--shadow-primary-lg);
  z-index: 500; transition: var(--transition);
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 20px 50px rgba(29,112,184,0.6); }
.chat-notif {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; background: #ef4444;
  border-radius: 50%; border: 2px solid var(--bg-primary);
  font-size: 10px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.chat-panel {
  position: fixed; bottom: 92px; left: 28px;
  width: 360px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-sm);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--r-2xl);
  box-shadow: var(--glass-shadow-lg);
  z-index: 500;
  display: none; flex-direction: column;
  overflow: hidden; height: 480px;
}
.chat-panel.open { display: flex; }
.chat-panel-header {
  background: var(--brand-gradient);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-panel-header-info { display: flex; align-items: center; gap: 12px; }
.chat-panel-header h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.chat-panel-header span { font-size: 12px; color: rgba(255,255,255,0.75); }
.chat-status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; margin-top: 1px; }
.chat-panel-close { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.chat-panel-close:hover { background: rgba(255,255,255,0.25); }
.chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.chat-msg { max-width: 78%; }
.chat-msg-text { padding: 12px 16px; border-radius: var(--r-lg); font-size: 13.5px; line-height: 1.6; }
.chat-msg.bot .chat-msg-text { background: var(--glass-bg-sm); border: 1px solid var(--border-light); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-msg-text { background: var(--brand-gradient); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg-time { font-size: 10.5px; color: var(--text-light); margin-top: 4px; padding: 0 4px; }
.chat-msg.user .chat-msg-time { text-align: right; }
.chat-panel-input { padding: 16px; border-top: 1px solid var(--border-light); display: flex; gap: 10px; }
.chat-panel-input input { flex: 1; background: var(--glass-bg-sm); border: 1px solid var(--border); border-radius: var(--r-full); padding: 10px 16px; font-size: 13px; color: var(--text-dark); font-family: inherit; outline: none; }
.chat-panel-input input:focus { border-color: var(--primary); }
.chat-send-btn { width: 38px; height: 38px; background: var(--brand-gradient); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; cursor: pointer; flex-shrink: 0; border: none; transition: var(--transition-fast); }
.chat-send-btn:hover { box-shadow: var(--shadow-primary); }

/* ═══════════════════════════════════════════════════════════════
   COURSES PAGE — FULL LISTING
   ═══════════════════════════════════════════════════════════════ */
.courses-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
.courses-sidebar {
  position: sticky; top: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  backdrop-filter: var(--glass-blur-xs);
  border-radius: var(--r-xl);
  padding: 28px;
}
.filter-section { margin-bottom: 28px; }
.filter-section-title { font-size: 12px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; border-radius: 4px; accent-color: var(--primary); cursor: pointer; }
.filter-option label { font-size: 13.5px; color: var(--text-medium); cursor: pointer; flex: 1; }
.filter-option-count { font-size: 12px; color: var(--text-light); background: var(--bg-tertiary); padding: 1px 8px; border-radius: var(--r-full); }
.price-range-wrap { padding: 4px 0; }
.price-range-wrap input[type="range"] { width: 100%; accent-color: var(--primary); }
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-top: 4px; }

@media (max-width: 1000px) { .courses-layout { grid-template-columns: 1fr; } .courses-sidebar { position: static; } }

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ═══════════════════════════════════════════════════════════════ */
.newsletter-section { background: var(--bg-secondary); padding: 80px 0; }
.newsletter-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-sm);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--r-2xl);
  padding: 56px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  max-width: 680px; margin: 0 auto;
}
.newsletter-wrap h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--text-dark); margin-bottom: 12px; }
.newsletter-wrap p { font-size: 15px; color: var(--text-medium); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.newsletter-input-group {
  display: flex; gap: 0; border-radius: var(--r-full); overflow: hidden;
  border: 1px solid var(--border); max-width: 480px; margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.newsletter-input-group input {
  flex: 1; padding: 15px 24px;
  background: var(--bg-card); border: none; outline: none;
  font-size: 14px; color: var(--text-dark); font-family: inherit;
}
.newsletter-input-group button { padding: 15px 28px; background: var(--brand-gradient); border: none; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: inherit; transition: var(--transition-fast); }
.newsletter-input-group button:hover { filter: brightness(1.1); }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); border: 1px solid var(--border);
  font-size: 13.5px; font-weight: 500; color: var(--text-medium);
  cursor: pointer; transition: var(--transition-fast);
  background: var(--glass-bg-sm);
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glass); }
.page-btn.active { background: var(--brand-gradient); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }
.page-btn.dots { border: none; background: none; color: var(--text-light); cursor: default; }

/* ═══════════════════════════════════════════════════════════════
   MISC ENTERPRISE FEATURES
   ═══════════════════════════════════════════════════════════════ */

/* Smooth scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce-hint 2.5s ease-in-out infinite;
}
.scroll-indicator i { font-size: 16px; }
@keyframes bounce-hint { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Highlight / accent pill */
.accent-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-glass);
  border: 1px solid var(--border-mid);
  color: var(--primary); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Two-column info layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 12px;
  background: var(--glass-bg-sm);
  backdrop-filter: var(--glass-blur-xs);
  transition: var(--transition-fast);
}
.faq-item.open { border-color: var(--border-mid); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--text-dark);
  gap: 16px;
}
.faq-question i { font-size: 12px; color: var(--primary); transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 22px; font-size: 14px; color: var(--text-medium); line-height: 1.8; font-weight: 300; display: none; }
.faq-item.open .faq-answer { display: block; }

/* Award / Trust badges */
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-full);
  background: var(--glass-bg-sm); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--text-medium);
  backdrop-filter: var(--glass-blur-xs);
}
.trust-badge i { color: var(--primary); }
.trust-badges-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* Divider */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-mid) 20%, var(--border-mid) 80%, transparent); margin: 0; }
