/* ==========================================================================
   UNICORN VIRTUAL UNIVERSITY — LIVING DIGITAL CAMPUS DESIGN SYSTEM
   Pixel-perfect Google Material Design 3 + Ultra-modern SaaS Campus UI
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Google Sans', sans-serif;
  --font-code: 'JetBrains Mono', monospace;

  /* Colors */
  --color-primary: #1a73e8;
  --color-primary-dark: #1557b0;
  --color-primary-light: #e8f0fe;
  --color-primary-border: #d2e3fc;

  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-topbar: #ffffff;

  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-light: #edf2f7;
  --border-subtle: #f1f5f9;

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-blue: 0 10px 25px -5px rgba(26, 115, 232, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* ==========================================================================
   TOP APP BAR (HEADER)
   ========================================================================== */
.top-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  box-shadow: var(--shadow-sm);
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: #1a73e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.brand-text h1 {
  font-family: var(--font-brand);
  font-size: 1.12rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.brand-text p {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 600px;
  margin: 0 24px;
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  gap: 10px;
  transition: var(--transition);
}

.search-input-wrapper:focus-within {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.search-input-wrapper input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--text-main);
  outline: none;
}

.search-shortcut-badge {
  background: #e2e8f0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.action-icon-btn:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

.action-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 6px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.user-profile-btn:hover {
  background: #f1f5f9;
}

.user-avatar-circle {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.user-info-text {
  text-align: left;
}

.user-info-text .user-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.user-info-text .user-role {
  font-size: 0.72rem;
  color: #64748b;
}

/* ==========================================================================
   SUBHEADER HORIZONTAL QUICK NAVIGATION PILLS
   ========================================================================== */
.quick-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow-x: auto;
}

.quick-nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.quick-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.quick-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.quick-pill.active {
  background: #1a73e8;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.25);
}

.quick-pill .material-symbols-outlined {
  font-size: 18px;
}

.quick-nav-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-reach-student {
  background: #1a73e8;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reach-student:hover {
  background: var(--color-primary-dark);
}

/* ==========================================================================
   APP SHELL CONTAINER (SIDEBAR + MAIN CONTENT)
   ========================================================================== */
.app-container {
  display: flex;
  flex: 1;
  max-width: 100%;
}

/* Left Sidebar */
.app-sidebar {
  width: 250px;
  min-width: 250px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-light);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-menu-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #475569;
  transition: var(--transition);
}

.sidebar-nav-item .nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-nav-item .material-symbols-outlined {
  font-size: 20px;
  color: #64748b;
}

.sidebar-nav-item:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.sidebar-nav-item:hover .material-symbols-outlined {
  color: var(--color-primary);
}

.sidebar-nav-item.active {
  background: #1a73e8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.sidebar-nav-item.active .material-symbols-outlined {
  color: #ffffff;
}

.sidebar-badge {
  background: #1a73e8;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}

.sidebar-nav-item.active .sidebar-badge {
  background: white;
  color: #1a73e8;
}

/* Sidebar Bottom Cards */
.sidebar-widgets-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.widget-coins-card {
  background: #fffdf5;
  border: 1px solid #fef08a;
  border-radius: var(--radius-md);
  padding: 14px;
}

.widget-coins-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #854d0e;
}

.widget-coins-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #713f12;
  margin: 4px 0;
}

.widget-coins-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a73e8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.widget-smart-pass-card {
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: var(--radius-md);
  padding: 14px;
}

.widget-smart-pass-top {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5b21b6;
  margin-bottom: 8px;
}

.widget-smart-pass-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-smart-pass-qr {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 6px;
  padding: 3px;
}

.widget-smart-pass-meta {
  font-size: 0.72rem;
  color: #6d28d9;
}

.btn-show-pass {
  margin-top: 10px;
  width: 100%;
  background: white;
  border: 1px solid #c4b5fd;
  color: #6d28d9;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.widget-ai-faculty-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.widget-ai-faculty-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0369a1;
}

.widget-ai-faculty-desc {
  font-size: 0.72rem;
  color: #0c4a6e;
  margin: 6px 0 10px 0;
  max-width: 130px;
}

.widget-ai-faculty-img {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

/* ==========================================================================
   MAIN DASHBOARD CONTENT AREA
   ========================================================================== */
.main-content-panel {
  flex: 1;
  padding: 24px 32px 48px 32px;
  overflow-y: auto;
  max-width: 1440px;
}

/* Student HUD Profile Top Bar */
.profile-hud-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.profile-hud-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-hud-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.profile-hud-details h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.profile-hud-details .student-id-tag {
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: #1a73e8;
  font-weight: 700;
  margin-left: 6px;
}

.profile-hud-details p {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.profile-hud-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hud-badge-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.hud-badge-house {
  color: #6d28d9;
  border-color: #ddd6fe;
  background: #f5f3ff;
}

.hud-badge-gpa {
  color: #1d4ed8;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.hud-badge-coins {
  color: #854d0e;
  border-color: #fef08a;
  background: #fefce8;
}

.hud-badge-streak {
  color: #c2410c;
  border-color: #fed7aa;
  background: #fff7ed;
}

.btn-hud-smartpass {
  background: white;
  border: 1px solid #93c5fd;
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hud-smartpass:hover {
  background: #eff6ff;
}

/* ==========================================================================
   HERO BANNER (MATCHING THE SCREENSHOT)
   ========================================================================== */
.hero-campus-banner {
  background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 60%, #3b82f6 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-blue);
  margin-bottom: 24px;
}

.hero-text-col {
  max-width: 580px;
  z-index: 2;
}

.hero-greeting {
  font-size: 0.95rem;
  font-weight: 600;
  color: #bfdbfe;
  margin-bottom: 6px;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: #dbeafe;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-pills-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-status-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.4);
}

.hero-graphic-col {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero-3d-img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-btns {
  display: flex;
  gap: 10px;
}

.btn-hero-white {
  background: white;
  color: #1a73e8;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.btn-hero-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-hero-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-hero-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   5 QUICK ACTIVITY STAT TILES
   ========================================================================== */
.quick-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-tile-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-tile-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-tile-content h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.stat-tile-content p {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   10 CAMPUS WINGS & REAL-TIME HUBS GRID
   ========================================================================== */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

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

.realtime-pill-status {
  font-size: 0.78rem;
  color: #059669;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-toggle-btns {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 8px;
}

.view-btn {
  border: none;
  background: transparent;
  padding: 4px 6px;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
}

.view-btn.active {
  background: white;
  color: #0f172a;
  box-shadow: var(--shadow-sm);
}

.wings-grid-10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.wing-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 220px;
}

.wing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.wing-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wing-card-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.wing-card-body p {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
}

.wing-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.wing-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.wing-arrow-icon {
  font-size: 18px;
}

/* ==========================================================================
   BOTTOM ROW: 3 WIDGET CARDS
   ========================================================================== */
.bottom-widgets-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 20px;
}

.bottom-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.bottom-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bottom-card-header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.bottom-card-header a {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a73e8;
}

/* Event Item */
.event-item-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-date-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
}

.event-date-day {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.event-date-month {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.event-meta h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}

.event-meta p {
  font-size: 0.76rem;
  color: #64748b;
}

.event-time-venue {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #64748b;
}

/* Announcement List */
.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}

.announcement-info p {
  font-size: 0.74rem;
  color: #64748b;
}

.announcement-time {
  margin-left: auto;
  font-size: 0.7rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Top Achievers List */
.achievers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.achiever-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank-badge {
  font-size: 0.85rem;
}

.achiever-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.achiever-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.achiever-gpa {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a73e8;
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .wings-grid-10 {
    grid-template-columns: repeat(3, 1fr);
  }
  .quick-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .bottom-widgets-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .app-sidebar {
    display: none;
  }
  .top-navbar {
    padding: 0 16px;
  }
  .header-search {
    display: none;
  }
  .quick-nav-bar {
    padding: 8px 16px;
  }
  .main-content-panel {
    padding: 16px;
  }
  .hero-campus-banner {
    flex-direction: column;
    padding: 24px;
    align-items: flex-start;
  }
  .hero-graphic-col {
    width: 100%;
    align-items: flex-start;
    margin-top: 16px;
  }
  .hero-3d-img {
    width: 100%;
    height: 180px;
  }
  .wings-grid-10 {
    grid-template-columns: 1fr;
  }
  .quick-stats-row {
    grid-template-columns: 1fr;
  }
}
