/* ===================================================
   SKILLFORCE HUB — Components
   Deep Space Command Center
   =================================================== */

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(13,46,53,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,201,177,0.08);
  transition: all var(--t-normal) var(--ease);
}
.navbar.scrolled { background: rgba(10,30,36,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.4); border-bottom-color: rgba(0,201,177,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: var(--sp-8); }
.nav-logo { display: flex; align-items: center; gap: var(--sp-3); font-family: var(--font-head); font-weight: 700; font-size: var(--text-xl); color: var(--white); text-decoration: none; flex-shrink: 0; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal) 0%, #00a896 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--deep); font-size: 17px; font-weight: 800; letter-spacing: -1px;
  box-shadow: var(--shadow-teal);
}
.nav-links { display: flex; align-items: center; gap: var(--sp-1); flex: 1; justify-content: center; }
.nav-link {
  padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500; color: rgba(244,247,246,0.6);
  transition: all var(--t-fast) var(--ease); white-space: nowrap;
}
.nav-link:hover { color: var(--teal); background: var(--teal-dim); }
.nav-link.active { color: var(--teal); background: var(--teal-dim); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); cursor: pointer; border-radius: var(--radius-sm); }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t-normal) var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--deep); z-index: 100; flex-direction: column; padding: var(--sp-6); gap: var(--sp-2);
}
.mobile-nav.open { display: flex; }
@media (max-width: 992px) {
  .navbar .nav-links, .navbar .nav-actions .nav-desktop-actions { display: none; }
  .navbar .hamburger { display: flex; }
  .nav-logo span { font-size: 16px; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.65rem 1.5rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: var(--text-sm);
  transition: all var(--t-normal) var(--ease);
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #00a896 100%);
  color: var(--deep); box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,201,177,0.35); filter: brightness(1.1); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #ffb733 100%);
  color: var(--deep); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,209,102,0.4); }
.btn-outline { background: transparent; color: var(--teal); border-color: rgba(0,201,177,0.4); }
.btn-outline:hover { background: var(--teal-dim); border-color: var(--teal); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(244,247,246,0.3); }
.btn-outline-white:hover { background: rgba(244,247,246,0.08); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--teal); }
.btn-ghost:hover { background: var(--teal-dim); }
.btn-secondary { background: var(--deep-mid); color: var(--white); border-color: var(--card-border); }
.btn-secondary:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn-danger { background: rgba(248,113,113,0.15); color: var(--danger); border-color: rgba(248,113,113,0.3); }
.btn-danger:hover { background: rgba(248,113,113,0.25); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: var(--text-xs); }
.btn-lg { padding: 0.9rem 2rem; font-size: var(--text-base); }
.btn-xl { padding: 1.1rem 2.75rem; font-size: var(--text-lg); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
}
.badge-primary { background: var(--teal-dim); color: var(--teal); }
.badge-accent, .badge-gold { background: var(--gold-dim); color: var(--gold); }
.badge-success { background: var(--success-dim); color: var(--success); }
.badge-warning { background: var(--warning-dim); color: var(--warning); }
.badge-danger { background: var(--danger-dim); color: var(--danger); }
.badge-info { background: var(--info-dim); color: var(--info); }
.badge-gray { background: rgba(244,247,246,0.08); color: var(--gray-300); }

/* ===== GLASSMORPHIC CARDS ===== */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all var(--t-normal) var(--ease);
}
.card:hover { border-color: rgba(0,201,177,0.25); box-shadow: var(--glow-teal); transform: translateY(-4px); }
.card-body { padding: var(--sp-6); }
.card-footer { padding: var(--sp-4) var(--sp-6); border-top: 1px solid var(--card-border); background: rgba(0,0,0,0.15); }

/* Course Card */
.course-card {
  background: var(--card-bg); backdrop-filter: blur(12px);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all var(--t-normal) var(--ease);
  display: flex; flex-direction: column;
  perspective: 1000px;
}
.course-card:hover {
  border-color: rgba(0,201,177,0.3);
  box-shadow: var(--glow-teal);
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
}
.course-card-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, rgba(0,201,177,0.08) 0%, rgba(0,201,177,0.02) 100%);
}
.course-card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.course-card-category { font-size: var(--text-xs); font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.course-card-title { font-family: var(--font-head); font-size: var(--text-base); font-weight: 600; color: var(--white); line-height: 1.3; }
.course-card-meta { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-xs); color: var(--gray-300); flex-wrap: wrap; }
.course-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5); border-top: 1px solid var(--card-border);
  background: rgba(0,0,0,0.15); gap: var(--sp-4);
}
.course-price { font-size: var(--text-xl); font-weight: 800; color: var(--teal); font-family: var(--font-head); }
.course-price-old { font-size: var(--text-sm); color: var(--gray-400); text-decoration: line-through; margin-left: var(--sp-2); }

/* Skill tags */
.skill-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.skill-tag {
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 500;
  background: var(--teal-dim); color: var(--teal);
  border: 1px solid rgba(0,201,177,0.15);
}

/* ===== FORMS ===== */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--gray-200); }
.form-label.required::after { content: ' *'; color: var(--gold); }
.form-control {
  width: 100%; padding: 0.7rem var(--sp-4);
  border: 1.5px solid rgba(0,201,177,0.15); border-radius: var(--radius);
  font-size: var(--text-sm); color: var(--white);
  background: rgba(13,46,53,0.6);
  transition: all var(--t-fast) var(--ease); outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,177,0.12); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { min-height: 100px; resize: vertical; }
select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300C9B1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.input-group { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; pointer-events: none; color: var(--gray-400); }
.input-group .form-control { padding-left: 42px; }
.input-icon-right { left: auto !important; right: 14px; cursor: pointer; pointer-events: all !important; }
.form-check { display: flex; align-items: center; gap: var(--sp-3); cursor: pointer; }
.form-check input { accent-color: var(--teal); width: 18px; height: 18px; cursor: pointer; }

/* ===== PROGRESS ===== */
.progress-bar-wrap { background: rgba(0,201,177,0.1); border-radius: var(--radius-full); overflow: hidden; height: 6px; }
.progress-bar {
  height: 100%; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--teal) 0%, #00a896 100%);
  transition: width 1.2s var(--ease-out);
  box-shadow: 0 0 8px rgba(0,201,177,0.3);
}
.progress-bar.accent { background: linear-gradient(90deg, var(--gold) 0%, #ffb733 100%); box-shadow: 0 0 8px rgba(255,209,102,0.3); }
.progress-bar.danger { background: linear-gradient(90deg, var(--danger) 0%, #ef4444 100%); }

/* ===== SIDEBAR (Student Portal) ===== */
.portal-layout { display: flex; min-height: 100vh; padding-top: var(--nav-h); }
.sidebar {
  width: var(--sidebar-w); background: linear-gradient(180deg, #0a1e24 0%, #0d2e35 100%);
  position: fixed; top: var(--nav-h); left: 0; bottom: 0;
  overflow-y: auto; z-index: 50; display: flex; flex-direction: column;
  border-right: 1px solid var(--card-border);
}
.sidebar-brand { padding: var(--sp-6); border-bottom: 1px solid rgba(0,201,177,0.06); display: flex; align-items: center; gap: var(--sp-3); }
.sidebar-brand-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--teal),#00a896); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--deep); flex-shrink: 0; }
.sidebar-brand-text { font-family: var(--font-head); font-weight: 600; font-size: var(--text-sm); color: var(--white); }
.sidebar-brand-sub { font-size: 10px; color: var(--gray-400); }
.sidebar-nav { flex: 1; padding: var(--sp-4); display: flex; flex-direction: column; gap: 2px; }
.sidebar-section-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); padding: var(--sp-4) var(--sp-3) var(--sp-2); }
.sidebar-link {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3); border-radius: var(--radius);
  font-size: var(--text-sm); font-weight: 500; color: var(--gray-300);
  transition: all var(--t-fast) var(--ease); position: relative;
}
.sidebar-link:hover { background: rgba(0,201,177,0.08); color: var(--white); }
.sidebar-link.active {
  background: var(--teal-dim); color: var(--teal);
}
.sidebar-link.active::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px;
  background: var(--teal); border-radius: 0 3px 3px 0;
}
.sidebar-link-icon { width: 20px; text-align: center; font-size: 15px; flex-shrink: 0; }
.sidebar-badge { margin-left: auto; background: var(--teal); color: var(--deep); font-size: 10px; padding: 2px 7px; border-radius: var(--radius-full); font-weight: 700; }
.sidebar-footer { padding: var(--sp-4); border-top: 1px solid rgba(0,201,177,0.06); }
.portal-main { flex: 1; margin-left: var(--sidebar-w); min-height: calc(100vh - var(--nav-h)); background: var(--body-bg); }
.portal-content { padding: var(--sp-8); max-width: 1200px; }

@media (max-width: 900px) {
  .sidebar { 
    left: -100%; 
    transition: left var(--t-normal) var(--ease);
    z-index: 1000;
  }
  .sidebar.open { 
    left: 0; 
  }
  .portal-main { margin-left: 0; }
  .portal-content { padding: var(--sp-4); }

  /* Mobile Dashboard Header with Toggle */
  .mobile-header {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    background: var(--body-bg);
    padding: var(--sp-4);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .menu-toggle {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
}

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--card-bg); backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  border: 1px solid var(--card-border);
  display: flex; align-items: center; gap: var(--sp-5);
  transition: all var(--t-normal) var(--ease);
}
.stat-card:hover { border-color: rgba(0,201,177,0.25); box-shadow: var(--glow-teal); transform: translateY(-3px); }
.stat-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0;
}
.stat-icon.primary { background: var(--teal-dim); }
.stat-icon.accent { background: var(--gold-dim); }
.stat-icon.success { background: var(--success-dim); }
.stat-icon.danger { background: var(--danger-dim); }
.stat-icon.info { background: var(--info-dim); }
.stat-number { font-size: var(--text-2xl); font-weight: 700; color: var(--white); font-family: var(--font-head); line-height: 1; }
.stat-label { font-size: var(--text-sm); color: var(--gray-300); margin-top: 4px; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; background: rgba(0,0,0,0.1); border-radius: var(--radius-md); border: 1px solid var(--card-border); }
table { width: 100%; border-collapse: collapse; min-width: 800px; }
th { padding: var(--sp-3) var(--sp-5); text-align: left; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); background: rgba(0,201,177,0.04); border-bottom: 1px solid var(--card-border); }
td { padding: var(--sp-3) var(--sp-5); font-size: var(--text-sm); color: var(--gray-200); border-bottom: 1px solid rgba(0,201,177,0.06); }
tr:hover td { background: rgba(0,201,177,0.04); }

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,30,36,0.8); backdrop-filter: blur(8px);
  z-index: 1000; display: none; align-items: center; justify-content: center; padding: var(--sp-6);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--deep-mid); border: 1px solid var(--card-border);
  border-radius: var(--radius-xl); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  animation: fadeInUp 0.3s var(--ease-out);
  box-shadow: var(--shadow-xl);
}
.modal-lg { max-width: 700px; }
.modal-header { padding: var(--sp-5) var(--sp-6); border-bottom: 1px solid var(--card-border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: var(--text-lg); color: var(--white); }
.modal-close { width: 32px; height: 32px; border-radius: var(--radius-full); background: rgba(244,247,246,0.06); color: var(--gray-300); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: all var(--t-fast); }
.modal-close:hover { background: var(--danger-dim); color: var(--danger); }
.modal-body { padding: var(--sp-6); }
.modal-footer { padding: var(--sp-4) var(--sp-6); border-top: 1px solid var(--card-border); display: flex; gap: var(--sp-3); justify-content: flex-end; }

/* ===== ACCORDION ===== */
.accordion-group { display: flex; flex-direction: column; gap: var(--sp-3); }
.accordion-item { border: 1px solid var(--card-border); border-radius: var(--radius-md); overflow: hidden; background: var(--card-bg); backdrop-filter: blur(12px); }
.accordion-header {
  padding: var(--sp-4) var(--sp-5); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  cursor: pointer; font-weight: 600; font-size: var(--text-sm); color: var(--white);
  transition: background var(--t-fast);
}
.accordion-header:hover { background: rgba(0,201,177,0.04); }
.accordion-icon { font-size: 12px; color: var(--gray-400); transition: transform var(--t-normal) var(--ease); }
.accordion-header.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-body.open { max-height: 600px; }
.accordion-content { padding: 0 var(--sp-5) var(--sp-5); }

/* ===== DROPDOWN ===== */
.dropdown { position: relative; }
.user-chip { display: flex; align-items: center; gap: var(--sp-2); cursor: pointer; padding: var(--sp-2); border-radius: var(--radius-full); transition: background var(--t-fast); }
.user-chip:hover { background: rgba(0,201,177,0.08); }
.avatar {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-sm); flex-shrink: 0;
  background: var(--teal-dim); color: var(--teal); border: 1.5px solid rgba(0,201,177,0.3);
}
.avatar-sm { width: 32px; height: 32px; font-size: var(--text-xs); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--deep-mid); border: 1px solid var(--card-border);
  border-radius: var(--radius-md); min-width: 200px; padding: var(--sp-2);
  box-shadow: var(--shadow-lg); display: none; z-index: 200;
}
.dropdown-menu.open { display: block; animation: fadeInUp 0.2s var(--ease-out); }
.dropdown-item {
  padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-sm);
  font-size: var(--text-sm); color: var(--gray-200); cursor: pointer;
  transition: all var(--t-fast); display: block; text-decoration: none;
}
.dropdown-item:hover { background: var(--teal-dim); color: var(--teal); }
.dropdown-item.danger { color: var(--danger); }
.dropdown-item.danger:hover { background: var(--danger-dim); }
.dropdown-divider { height: 1px; background: var(--card-border); margin: var(--sp-2) 0; }

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex; align-items: center; gap: var(--sp-3);
  background: rgba(0,201,177,0.06); border: 1px solid rgba(0,201,177,0.12);
  border-radius: var(--radius-full); padding: var(--sp-2) var(--sp-4);
  transition: border-color var(--t-fast);
}
.search-bar:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,177,0.1); }
.search-bar input { flex: 1; border: none; background: transparent; outline: none; font-size: var(--text-sm); color: var(--white); }
.search-bar input::placeholder { color: var(--gray-400); }

/* ===== NOTIFICATION ===== */
.notif-bell { position: relative; font-size: 20px; cursor: pointer; padding: var(--sp-2); border-radius: var(--radius-full); transition: background var(--t-fast); }
.notif-bell:hover { background: var(--teal-dim); }
.notif-dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s infinite; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.breadcrumb a { color: rgba(244,247,246,0.5); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { color: rgba(244,247,246,0.2); }
.breadcrumb-current { color: var(--teal); font-weight: 500; }

/* ===== CHIPS / FILTER PILLS ===== */
.filter-chips { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.chip {
  padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(0,201,177,0.15); color: var(--gray-300);
  background: transparent; transition: all var(--t-fast) var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal); }
.chip.active { background: var(--teal); color: var(--deep); border-color: var(--teal); }

/* ===== TABS (Pill) ===== */
.tabs-pill { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.tab-pill {
  padding: var(--sp-2) var(--sp-5); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500; color: var(--gray-400);
  border: 1.5px solid rgba(0,201,177,0.1); cursor: pointer;
  background: transparent; transition: all var(--t-fast) var(--ease);
}
.tab-pill.active { background: var(--teal); color: var(--deep); border-color: var(--teal); }
.tab-pill:hover:not(.active) { border-color: rgba(0,201,177,0.3); color: var(--teal); }

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s var(--ease); }

/* ===== FOOTER ===== */
/* Responsive footer grid: 4-col → 2-col (tablet) → 1-col (mobile) */
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

.footer {
  background: #071A1F;
  border-top: 1px solid rgba(0,201,177,0.12);
  padding: var(--sp-12) 0 var(--sp-8);
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: var(--sp-6);
}
.footer-link {
  color: #A8D4D0;
  font-size: var(--text-sm);
  transition: all 200ms ease;
  text-decoration: none;
}
.footer-link:hover {
  color: #00C9B1;
  text-decoration: none;
}
.footer-body-text {
  color: #7BBFBA;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.footer-bottom {
  padding-top: var(--sp-8);
  margin-top: var(--sp-8);
  border-top: 1px solid rgba(0,201,177,0.12);
  text-align: center;
}
.footer-bottom-text {
  font-size: 12px;
  color: #4A7A80;
}
.social-icon {
  color: #7BBFBA;
  transition: all 200ms ease;
}
.social-icon.insta:hover { color: #E1306C; }
.social-icon.linkedin:hover { color: #0A66C2; }
.social-icon.facebook:hover { color: #1877F2; }
.social-icon.youtube:hover { color: #FF0000; }
.heart-icon { color: #F87171; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: var(--sp-2); }
.page-btn {
  width: 36px; height: 36px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 600; cursor: pointer;
  color: var(--gray-300); background: var(--card-bg); border: 1px solid var(--card-border);
  transition: all var(--t-fast);
}
.page-btn.active, .page-btn:hover { background: var(--teal); color: var(--deep); border-color: var(--teal); }
