/* ============================================
   Theme Variables
   ============================================ */
:root {
  --primary-color: #3A87FF;
  --secondary-color: #000000;
  --secondary-gray: #333333;
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border-color: #E0E0E0;
  --background-white: #FFFFFF;
  --background-gray: #F5F5F5;
  --error-color: #DC2626;
  --success-color: #10B981;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  background-color: var(--background-white);
  line-height: 1.6;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: bold;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem 0;
  color: var(--text-primary);
}

small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: #2A6FE0;
}

b, strong {
  font-weight: bold;
  color: var(--text-primary);
}

i, em {
  font-style: italic;
}

u {
  text-decoration: underline;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Button Variants */
.btn-default {
  background-color: var(--primary-color);
  color: var(--background-white);
}

.btn-default:hover:not(:disabled) {
  background-color: #2A6FE0;
}

.btn-secondary {
  background-color: var(--secondary-gray);
  color: var(--background-white);
}

.btn-secondary:hover:not(:disabled) {
  background-color: #1a1a1a;
}

.btn-destructive {
  background-color: var(--error-color);
  color: var(--background-white);
}

.btn-destructive:hover:not(:disabled) {
  background-color: #B91C1C;
}

.btn-outline {
  background-color: var(--background-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover:not(:disabled) {
  background-color: var(--primary-color);
  color: var(--background-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-ghost:hover:not(:disabled) {
  background-color: rgba(58, 135, 255, 0.1);
}

.btn-link {
  background-color: transparent;
  color: var(--primary-color);
  text-decoration: underline;
  padding: 0;
}

.btn-link:hover:not(:disabled) {
  color: #2A6FE0;
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}

/* Button States */
.btn:disabled,
.btn-disabled {
  background-color: var(--border-color);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Icon Button */
.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon.btn-sm {
  width: 2rem;
  height: 2rem;
}

.btn-icon.btn-lg {
  width: 3rem;
  height: 3rem;
}

/* ============================================
   Form Elements
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 135, 255, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:disabled {
  background-color: var(--background-gray);
  color: var(--text-muted);
  cursor: not-allowed;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  appearance: none;
}

/* Checkbox */
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  background-color: var(--background-white);
  position: relative;
  transition: all 0.2s ease;
}

.checkbox input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-white);
  font-size: 0.875rem;
  font-weight: bold;
}

.checkbox input[type="checkbox"]:disabled {
  background-color: var(--background-gray);
  border-color: var(--border-color);
  cursor: not-allowed;
  opacity: 0.6;
}

.checkbox-label {
  color: var(--text-primary);
  cursor: pointer;
}

/* Radio */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background-color: var(--background-white);
  position: relative;
  transition: all 0.2s ease;
}

.radio input[type="radio"]:checked {
  border-color: var(--primary-color);
}

.radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.radio input[type="radio"]:disabled {
  background-color: var(--background-gray);
  border-color: var(--border-color);
  cursor: not-allowed;
  opacity: 0.6;
}

.radio-label {
  color: var(--text-primary);
  cursor: pointer;
}

/* Toggle Switch */
.toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.toggle-switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  background-color: var(--border-color);
  border-radius: 0.75rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--background-white);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.toggle input[type="checkbox"] {
  display: none;
}

.toggle input[type="checkbox"]:checked + .toggle-switch {
  background-color: var(--primary-color);
}

.toggle input[type="checkbox"]:checked + .toggle-switch::after {
  transform: translateX(1.5rem);
}

.toggle input[type="checkbox"]:disabled + .toggle-switch {
  background-color: var(--background-gray);
  cursor: not-allowed;
  opacity: 0.6;
}

.toggle-label {
  color: var(--text-primary);
  cursor: pointer;
}

/* Slider */
.slider-group {
  margin-bottom: 1.5rem;
}

.slider {
  width: 100%;
  height: 0.5rem;
  background-color: var(--secondary-gray);
  border-radius: 0.25rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--background-white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--background-white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.slider::-webkit-slider-runnable-track {
  height: 0.5rem;
  background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) var(--value, 50%), var(--secondary-gray) var(--value, 50%), var(--secondary-gray) 100%);
  border-radius: 0.25rem;
}

.slider::-moz-range-track {
  height: 0.5rem;
  background-color: var(--secondary-gray);
  border-radius: 0.25rem;
}

.slider::-moz-range-progress {
  height: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 0.25rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.card-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-primary);
}

.card-body {
  padding: 1.25rem;
}

.card-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.card-avatar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.card-avatar-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.card-avatar-content {
  flex: 1;
}

.card-avatar-name {
  margin: 0 0 0.25rem 0;
  font-weight: bold;
  color: var(--text-primary);
}

.card-avatar-email {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.card-stats {
  padding: 1.25rem;
  text-align: center;
}

.card-stats-title {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  color: var(--text-primary);
}

.card-stats-value {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-primary);
}

.card-stats-description {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  line-height: 1.5;
}

.badge-default {
  background-color: var(--primary-color);
  color: var(--background-white);
}

.badge-secondary {
  background-color: var(--secondary-gray);
  color: var(--background-white);
}

.badge-destructive {
  background-color: var(--error-color);
  color: var(--background-white);
}

.badge-outline {
  background-color: var(--background-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
}

.alert-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

.alert-content {
  flex: 1;
}

.alert-info {
  background-color: rgba(58, 135, 255, 0.1);
  color: var(--primary-color);
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.alert-error {
  background-color: rgba(220, 38, 38, 0.1);
  color: var(--error-color);
}

/* ============================================
   Accordion
   ============================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
  border: none;
}

.accordion-item {
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: var(--background-white);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: var(--background-gray);
}

.accordion-title {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-primary);
}

.accordion-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  color: var(--text-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.accordion-body {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* ============================================
   Tabs
   ============================================ */
.tabs {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.tab-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tab-item {
  padding: 0.75rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.tab-item:hover {
  color: var(--text-primary);
}

.tab-item.active {
  color: var(--text-primary);
  font-weight: bold;
  border-bottom-color: var(--primary-color);
}

.tab-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tab-item.active .tab-link {
  color: var(--text-primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-panel-title {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  color: var(--text-primary);
}

.tab-panel-description {
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Progress Bars
   ============================================ */
.progress {
  width: 100%;
  height: 1.5rem;
  background-color: var(--secondary-gray);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-white);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
}

/* ============================================
   Tables
   ============================================ */
.table-container {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background-white);
}

.table thead {
  background-color: var(--background-gray);
}

.table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: bold;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
}

.table td {
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
  background-color: var(--background-gray);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.table-link:hover {
  color: #2A6FE0;
}

/* ============================================
   Dialogs / Modals
   ============================================ */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dialog {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.dialog-overlay.active .dialog {
  transform: scale(1);
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.dialog-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-primary);
}

.dialog-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dialog-close:hover {
  background-color: var(--background-gray);
  color: var(--text-primary);
}

.dialog-body {
  padding: 1.5rem;
}

.dialog-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.dialog-content {
  color: var(--text-primary);
  font-weight: bold;
  margin-bottom: 1rem;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   Dropdown Menus
   ============================================ */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-toggle:hover {
  background-color: var(--background-gray);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 0.75rem 1rem;
  font-weight: bold;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

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

.dropdown-item:hover {
  background-color: var(--background-gray);
}

.dropdown-item.destructive {
  color: var(--error-color);
}

.dropdown-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
   Avatars
   ============================================ */
.avatar {
  display: inline-block;
  border-radius: 50%;
  background-color: var(--background-gray);
  color: var(--text-primary);
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  flex-shrink: 0;
}

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

.avatar-xs {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.625rem;
  line-height: 1.5rem;
}

.avatar-sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  line-height: 2rem;
}

.avatar-md {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 2.5rem;
}

.avatar-lg {
  width: 3rem;
  height: 3rem;
  font-size: 1rem;
  line-height: 3rem;
}

.avatar-xl {
  width: 4rem;
  height: 4rem;
  font-size: 1.25rem;
  line-height: 4rem;
}

/* ============================================
   Links & Navigation
   ============================================ */
.nav-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #2A6FE0;
}

.nav-link-external {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.nav-link-external:hover {
  color: #2A6FE0;
}

.back-to-top {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: #2A6FE0;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================
   Dashboard Styles
   ============================================ */
.dashboard-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--background-gray);
}

/* Sidebar Styles */
.sidebar {
  width: 280px;
  background-color: var(--background-white);
  border-right: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.sidebar.collapsed .sidebar-header {
  padding: 1rem 0.5rem;
  justify-content: center;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar.collapsed .sidebar-logo {
  justify-content: center;
}

.sidebar-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sidebar-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sidebar-logo-text {
  font-weight: bold;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar.collapsed .sidebar-logo-text,
.sidebar.collapsed .sidebar-logo-subtitle {
  display: none;
}

.sidebar-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.3s ease, top 0.3s ease, right 0.3s ease;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar.collapsed .sidebar-toggle {
  position: absolute;
  top: 50%;
  right: 0.1rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
}

.sidebar-toggle:hover {
  color: var(--text-primary);
}

/* Sidebar Close Button (Mobile) */
.sidebar-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.sidebar-close:hover {
  color: var(--text-primary);
}

/* Mobile Header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.mobile-header-logo {
  display: flex;
  align-items: center;
}

.sidebar-menu {
  padding: 1rem 0;
}

.menu-section-title {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar.collapsed .menu-section-title {
  display: none;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.menu-item:hover {
  background-color: var(--background-gray);
}

.menu-item.active {
  background-color: var(--primary-color);
  color: var(--background-white);
}

.menu-item-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}

.sidebar.collapsed .menu-item-text {
  display: none;
}

.sidebar.collapsed .unlock-pro-tools-container {
  display: none;
}

/* Sidebar Copyright */
.sidebar-copyright {
  padding: 1rem 1.5rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.sidebar-copyright p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sidebar.collapsed .sidebar-copyright {
  display: none;
}

/* Pro Tool Cards */
.pro-tool-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.pro-tool-card:hover:not(.locked) {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.pro-tool-card.locked {
  opacity: 0.6;
  cursor: not-allowed;
}

.pro-tool-card.locked:hover {
  transform: none;
  box-shadow: none;
}

/* Main Content Area */
.main-content {
  flex: 1;
  margin-left: 280px;
  transition: margin-left 0.3s ease;
  padding: 2rem;
}

.sidebar.collapsed ~ .main-content {
  margin-left: 80px;
}

/* Header */
.dashboard-header {
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.dashboard-header p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Profile Card - extends .card */
.profile-card {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--background-white);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.profile-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.profile-edit-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* Profile Form Grid - Responsive Two Column Layout */
.profile-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Stats Cards - extends .card */
.stats-card {
  padding: 1.5rem;
  height: 100%;
}

.stats-card-header {
  margin-bottom: 1rem;
  /* Uses utility classes: d-flex, align-items-center, justify-content-between */
}

.stats-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.125rem;
}

.stats-card-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.stats-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.stats-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Masterclasses Card */
.masterclass-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.masterclass-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.masterclass-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Mentors Card */
.mentor-search {
  margin-bottom: 1rem;
  position: relative;
}

.mentor-search input {
  padding-right: 2.5rem;
}

.mentor-search-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.mentor-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.mentor-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--background-white);
  font-weight: bold;
}

.mentor-info {
  flex: 1;
}

.mentor-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mentor-expertise {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.mentor-rating {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Refer & Earn Card - reuses alert-info background */
.earnings-box {
  background-color: rgba(58, 135, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.earnings-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.earnings-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.earnings-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1rem;
}

.earnings-stat {
  text-align: center;
}

.earnings-stat-value {
  font-weight: 600;
  color: var(--text-primary);
}

.earnings-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Mock Interviews Card */
.interview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.interview-stat-box {
  background-color: var(--background-gray);
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
}

.interview-stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.interview-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.interview-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
  }

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

  .sidebar.collapsed {
    width: 280px;
  }

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

  .sidebar.collapsed ~ .main-content {
    margin-left: 0;
  }

  /* Hide desktop toggle on mobile */
  .sidebar-toggle {
    display: none;
  }

  /* Show close button on mobile */
  .sidebar-close {
    display: flex;
  }

  /* Mobile Header */
  .mobile-header {
    display: flex;
  }

  .mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .mobile-menu-toggle:hover {
    color: var(--primary-color);
  }

  .dashboard-header {
    margin-top: 0;
    flex-direction: column;
    gap: 1rem;
  }

  .dashboard-header > div:last-child {
    width: 100%;
  }

  .dashboard-header > div:last-child .btn {
    flex: 1;
  }

  .dashboard-container {
    padding-top: 0;
  }

  /* Profile Form Grid - Mobile Responsive */
  .profile-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-form-grid .form-group {
    margin-bottom: 1.5rem;
  }

  .card-footer {
    flex-direction: column;
  }

  .card-footer .btn {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .sidebar-close {
    display: none;
  }
}

/* Overlay for mobile - simplified version of dialog-overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.sidebar-overlay.active {
  display: block;
}

/* ============================================
   Landing Page Styles
   ============================================ */
.landing-page {
  overflow-x: hidden;
}

/* Header/Navigation */
.landing-header {
  position: sticky;
  top: 0;
  background-color: var(--background-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-header {
  display: none;
}

.nav-menu-item-signin {
  display: none;
}

.nav-menu-item {
  margin: 0;
}

.nav-menu-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu-link:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-signin {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-signin:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero-section {
  padding: 4rem 2rem;
  background-color: var(--background-white);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(58, 135, 255, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-tagline i {
  font-size: 0.875rem;
}

/* Hero button with black border hover */
.hero-actions .btn-outline[style*="border-color: var(--text-primary)"]:hover {
  background-color: var(--text-primary);
  color: var(--background-white);
  border-color: var(--text-primary);
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-heading-primary {
  color: var(--primary-color);
}

.hero-heading-secondary {
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

.hero-overlay-card {
  position: absolute;
  background-color: var(--background-white);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.hero-overlay-card-top {
  top: 1rem;
  left: -3rem;
  z-index: 10;
}

@media (max-width: 1024px) {
  .hero-overlay-card-top {
    left: -2rem;
  }
}

.hero-overlay-card-bottom {
	bottom: 1rem;
	left: 1rem;
}

.hero-overlay-card-bottom-right {
	top: 50%;
	right: -1.5rem;
	transform: translateY(-50%);
	z-index: 10;
}

@media (max-width: 1024px) {
	.hero-overlay-card-bottom-right {
		right: -1rem;
		transform: translateY(-50%);
	}
}

.hero-overlay-card-bottom-left {
	bottom: 1rem;
	left: 1rem;
	z-index: 10;
}

.hero-overlay-card-title {
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hero-overlay-card-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.section-heading-primary {
  color: var(--text-primary);
}

.section-heading-accent {
  color: var(--primary-color);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tools-grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .tools-grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-grid-4-cols {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tool-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.75rem;
  flex-shrink: 0;
  background-color: transparent;
}

.tool-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.tool-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

/* Community Section */
.community-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.community-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.community-feature-icon {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.community-feature-content {
  flex: 1;
}

.community-feature-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.community-feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.community-stats-box {
  background-color: rgba(58, 135, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
}

.community-stats-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
}

.community-stats-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.community-stats-label {
  color: var(--text-secondary);
}

/* Mentor Section */
.mentor-section {
  background-color: var(--secondary-gray);
  color: var(--background-white);
}

.mentor-section .section-heading-primary {
  color: var(--background-white);
}

.mentor-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mentor-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mentor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mentor-card-icon {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--background-white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--background-white);
  font-size: 1.5rem;
}

.mentor-card-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--background-white);
}

.mentor-card-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.mentor-section-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

/* Masterclass Section */
.masterclass-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.masterclass-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.masterclass-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.masterclass-feature-icon {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.masterclass-feature-content {
  flex: 1;
}

.masterclass-feature-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.masterclass-feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.masterclass-content {
  background-color: var(--background-gray);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
}

.masterclass-content-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.masterclass-content-heading-primary {
  color: var(--text-primary);
}

.masterclass-content-heading-accent {
  color: var(--primary-color);
}

.masterclass-content-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.masterclass-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.masterclass-topic {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-primary);
}

.masterclass-topic::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--background-white);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--background-white);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-white {
  background-color: var(--background-white);
  color: var(--primary-color);
}

.btn-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background-color: var(--secondary-gray);
  color: var(--background-white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--background-white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-column-title {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--background-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link a:hover {
  color: var(--background-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-email {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--background-white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Landing Page Responsive Styles */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-container,
  .community-container,
  .masterclass-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--background-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    gap: 0;
    overflow-y: auto;
  }

  .nav-menu.mobile-open {
    transform: translateX(0);
  }

  .nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    list-style: none;
    flex-shrink: 0;
  }

  .nav-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: var(--border-radius-sm);
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-menu-close:hover {
    background-color: var(--background-gray);
    color: var(--primary-color);
  }

  .nav-menu-item {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    list-style: none;
  }

  .nav-menu-item-signin {
    display: list-item;
  }

  .nav-menu-link {
    display: block;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-signin {
    display: none;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .mentors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

  .nav-container {
    padding: 0 1rem;
  }

  .hero-section {
    padding: 2rem 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }
}

/* ============================================
   Services Page Styles
   ============================================ */
.service-card {
  height: 100%;
}

.service-card .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0;
}

.service-actions {
  margin-top: 1rem;
}

.service-actions .btn {
  font-size: 0.875rem;
}

/* Service card hover effect */
.service-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* Delete button styling */
.btn.btn-delete {
  color: var(--error-color);
  border-color: var(--error-color);
  background-color: transparent;
}

.btn.btn-delete:hover:not(:disabled) {
  background-color: var(--error-color);
  color: var(--background-white);
  border-color: var(--error-color);
}

/* ============================================
   Expert Page Styles
   ============================================ */
.expert-hero {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-profile-image {
  flex-shrink: 0;
}

.expert-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.expert-profile-content {
  flex: 1;
}

.expert-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.expert-title {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.expert-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.expert-social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.expert-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(58, 135, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.expert-social-link:hover {
  background-color: var(--primary-color);
  color: var(--background-white);
}

.expert-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-stat-item {
  text-align: center;
}

.expert-stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.expert-stat-label {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.expert-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Expert Page Responsive Styles */
@media (max-width: 768px) {
  .expert-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .expert-profile-content {
    text-align: center;
  }

  .expert-social-links {
    justify-content: center;
  }

  .expert-actions {
    justify-content: center;
    flex-direction: column;
  }

  .expert-actions .btn {
    width: 100%;
  }

  .expert-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .expert-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .expert-stats {
    grid-template-columns: 1fr;
  }

  .expert-name {
    font-size: 2rem;
  }
}

/* ============================================
   Workspace Toggle Switch Styles
   ============================================ */
.workspace-toggle-container {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--background-gray);
  margin-bottom: 0.5rem;
}

.workspace-toggle-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.workspace-toggle-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.workspace-segmented-control {
  display: flex;
  background-color: var(--primary-color);
  border-radius: 24px;
  padding: 2px;
  position: relative;
  width: 100%;
  max-width: 200px;
}

.workspace-segment {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  color: var(--background-white);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workspace-segment.active {
  background-color: var(--background-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.workspace-segment:not(.active):hover {
  opacity: 0.8;
}

.workspace-segment:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Hide workspace toggle when sidebar is collapsed */
.sidebar.collapsed .workspace-toggle-container {
  display: none;
}

/* Pro Pass Badge */
.pro-pass-badge {
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: #2d2d2d;
  color: white;
  border-radius: 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.sidebar.collapsed .pro-pass-badge {
  padding: 0.5rem;
  margin: 1rem 0.5rem;
  justify-content: center;
}

.pro-pass-badge-text {
  white-space: nowrap;
  overflow: hidden;
}

.sidebar.collapsed .pro-pass-badge-text {
  display: none;
}

/* Sidebar Logo Subtitle */
.sidebar-logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Menu Section Title with Margin */
.menu-section-title.mt-1 {
	margin-top: 1rem;
}

/* ============================================
   Service Landing Page Styles
   ============================================ */
.service-landing-grid {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: start;
}

.service-sidebar {
	position: sticky;
	top: 2rem;
}

.service-section {
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.service-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.service-metrics {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.pricing-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 2rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-amount {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 1;
}

.expert-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 2rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Service Landing Page Responsive Styles */
@media (max-width: 768px) {
	.service-landing-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.service-sidebar {
		position: static;
	}
	
	.service-section {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
	
	.service-title {
		font-size: 2rem !important;
	}
	
	.service-metrics {
		flex-direction: column;
		align-items: flex-start !important;
		gap: 1rem !important;
	}
	
	.breadcrumb {
		font-size: 0.75rem !important;
		flex-wrap: wrap;
	}
	
	.pricing-card {
		padding: 1.5rem !important;
	}
	
	.pricing-amount {
		font-size: 2.5rem !important;
	}
	
	.expert-card {
		padding: 1.5rem !important;
	}
}

/* ============================================
   Services Search List Page Styles
   ============================================ */
/* Filters Container */
.filters-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.filter-search-form {
	flex: 1;
	min-width: 250px;
	max-width: 400px;
}

.search-input-wrapper {
	position: relative;
	width: 100%;
}

.filter-search-input {
	width: 100%;
	padding-left: 2.5rem;
}

.search-icon {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	pointer-events: none;
	font-size: 1rem;
}

.filter-form {
	display: inline-block;
}

.filter-select {
	min-width: 150px;
	width: 100%;
}

/* Pagination Styles */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.pagination-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.875rem;
	font-size: 0.875rem;
	color: var(--text-primary);
	text-decoration: none;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-sm);
	background-color: var(--background-white);
	transition: all 0.2s ease;
	min-width: 2.5rem;
}

.pagination-link:hover {
	background-color: var(--background-gray);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.pagination-link.active {
	background-color: var(--primary-color);
	color: var(--background-white);
	border-color: var(--primary-color);
}

.pagination-link.active:hover {
	background-color: #2A6FE0;
	border-color: #2A6FE0;
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

/* Services Search List Responsive Design */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.filters-container {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	
	.filter-search-form {
		min-width: 100%;
		max-width: 100%;
		width: 100%;
	}
	
	.filter-form {
		width: 100%;
	}
	
	.filter-select {
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 480px) {
	section .section-container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.card {
		margin-bottom: 1rem;
	}
	
	.card[style*="padding: 1.5rem"] {
		padding: 1rem !important;
	}
}

/* ============================================
   Services Guide Side Panel Styles
   ============================================ */
.services-guide-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
	display: none;
}

.services-guide-panel.active {
	display: block;
}

.services-guide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.services-guide-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 600px;
	height: 100%;
	background-color: #fff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	overflow: hidden;
}

.services-guide-panel.active .services-guide-content {
	transform: translateX(0);
}

.services-guide-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	background-color: #fff;
	flex-shrink: 0;
}

.services-guide-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
}

.services-guide-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.375rem;
	transition: background-color 0.2s;
}

.services-guide-close:hover {
	background-color: #f3f4f6;
	color: var(--text-primary);
}

.services-guide-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	color: var(--text-primary);
	line-height: 1.6;
}

.services-guide-body h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.services-guide-body h3:first-child {
	margin-top: 0;
}

.services-guide-body h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.services-guide-body p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.services-guide-body ul {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.services-guide-body li {
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.services-guide-body hr {
	margin: 1.5rem 0;
	border: none;
	border-top: 1px solid #e5e7eb;
}

.services-guide-body strong {
	color: var(--text-primary);
	font-weight: 600;
}

.services-guide-body em {
	color: var(--text-secondary);
	font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.services-guide-content {
		max-width: 100%;
		width: 100%;
	}
	
	.services-guide-header {
		padding: 1rem;
	}
	
	.services-guide-header h2 {
		font-size: 1.25rem;
	}
	
	.services-guide-body {
		padding: 1rem;
	}
	
	.services-guide-body h3 {
		font-size: 1.125rem;
	}
	
	.services-guide-body h4 {
		font-size: 1rem;
	}
}

/* Prevent body scroll when panel is open */
body.services-guide-open {
	overflow: hidden;
}

/* ============================================
   Templates Side Panel Styles
   ============================================ */
.templates-trigger-link {
	color: #000;
	font-weight: 500;
	font-size: 0.85rem;
	text-decoration: none;
	cursor: pointer;
}

.templates-trigger-link:hover {
	text-decoration: underline;
}

.templates-side-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
	display: none;
}

.templates-side-panel.open {
	display: block;
}

.templates-panel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.templates-panel-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.templates-panel-content {
	position: absolute;
	top: 0;
	right: 0;
	width: min(600px, 90vw);
	height: 100%;
	background: #fff;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.templates-side-panel.open .templates-panel-content {
	transform: translateX(0);
}

.templates-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	background: #fafafa;
}

.templates-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.templates-panel-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.templates-panel-close {
	background: none;
	border: none;
	padding: 0.25rem;
	font-size: 1.25rem;
	color: var(--text-secondary);
	border-radius: 0.375rem;
	transition: background-color 0.2s;
}

.templates-panel-close:hover {
	background-color: #f3f4f6;
	color: var(--text-primary);
}

.templates-filter label {
	font-weight: 500;
}

.templates-search {
	flex: 1;
}

.templates-filter {
	flex: 1;
}

.templates-filters-row {
	display: flex;
	gap: 1rem;
	align-items: flex-end;
}

@media (max-width: 768px) {
	.templates-filters-row {
		flex-direction: column;
		align-items: stretch;
	}
	
	.templates-panel-content {
		width: min(100vw, 90vw);
	}
}

.template-card {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	box-shadow: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
	cursor: pointer;
	background: #fff;
}

.template-card:hover,
.template-card:focus {
	border-color: #d1d5db;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.template-card:focus {
	outline: 2px solid var(--primary-color, #2563eb);
	outline-offset: 3px;
}

/* ============================================
   My Bookings Page Styles
   ============================================ */
/* Booking Summary Cards */
.booking-summary-card {
	padding: 1.5rem;
	height: 100%;
	position: relative;
}

.booking-summary-header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.booking-summary-icon {
	font-size: 1.5rem;
	color: var(--text-secondary);
	opacity: 0.6;
}

.booking-summary-content {
	display: flex;
	flex-direction: column;
}

.booking-summary-value {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.booking-summary-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

/* Booking Status Badge */
.booking-status-badge {
	padding: 0.375rem 0.875rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}

/* Booking Actions */
.booking-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.booking-cancel-btn {
	color: var(--text-secondary);
	padding: 0.5rem;
	min-width: auto;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.booking-cancel-btn:hover:not(:disabled) {
	color: var(--error-color);
	background-color: rgba(220, 38, 38, 0.1);
}

/* Mobile Card View */
.booking-cards-mobile {
	display: none;
}

.booking-card-mobile {
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.booking-card-header {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
}

.booking-card-header > div {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.booking-card-service {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
	line-height: 1.4;
}

.booking-card-body {
	padding: 1rem 1.25rem;
}

.booking-card-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--background-gray);
}

.booking-card-row:last-child {
	border-bottom: none;
}

.booking-card-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 500;
	min-width: 100px;
	flex-shrink: 0;
}

.booking-card-value {
	font-size: 0.875rem;
	color: var(--text-primary);
	text-align: right;
	flex: 1;
}

.booking-card-subtext {
	font-size: 0.75rem;
	color: var(--text-secondary);
	margin-top: 0.25rem;
}

.booking-card-price {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
}

.booking-card-footer {
	padding: 1rem 1.25rem;
	border-top: 1px solid var(--border-color);
	background-color: var(--background-gray);
}

/* Booking Table Responsive */
@media (max-width: 768px) {
	/* Hide desktop table on mobile */
	.booking-table-desktop {
		display: none;
	}
	
	/* Show mobile cards on mobile */
	.booking-cards-mobile {
		display: block;
		padding: 1rem;
	}
	
	.booking-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
	}
	
	.booking-actions .btn {
		width: 100%;
		justify-content: center;
	}
	
	.booking-summary-value {
		font-size: 2rem;
	}
	
	.dashboard-header h1 {
		font-size: 1.75rem;
	}
	
	.dashboard-header p {
		font-size: 0.875rem;
	}
	
	.booking-card-header,
	.booking-card-body,
	.booking-card-footer {
		padding: 0.875rem 1rem;
	}
	
	.booking-card-header {
		text-align: center;
	}
	
	.booking-card-header > div {
		align-items: center;
	}
	
	.booking-card-service {
		font-size: 1.25rem;
		text-align: center;
	}
	
	.booking-card-row {
		padding: 0.625rem 0;
	}
	
	.booking-card-label {
		min-width: 80px;
		font-size: 0.8125rem;
	}
	
	.booking-card-value {
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.booking-cards-mobile {
		padding: 0.5rem;
	}
	
	.booking-card-header,
	.booking-card-body,
	.booking-card-footer {
		padding: 0.75rem;
	}
	
	.booking-card-header {
		text-align: center;
	}
	
	.booking-card-header > div {
		align-items: center;
	}
	
	.booking-card-service {
		font-size: 1.125rem;
		text-align: center;
	}
	
	.booking-card-label {
		min-width: 70px;
		font-size: 0.75rem;
	}
	
	.booking-card-value {
		font-size: 0.75rem;
	}
	
	.booking-card-price {
		font-size: 0.9375rem;
	}
	
	.dashboard-header h1 {
		font-size: 1.5rem;
	}
}

/* Booking Management Side Panel */
.booking-side-panel {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 600px;
	height: 100vh;
	z-index: 9999;
	transition: right 0.3s ease-in-out;
}

.booking-side-panel.active {
	right: 0;
}

.booking-side-panel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	z-index: 9998;
}

.booking-side-panel.active .booking-side-panel-overlay {
	opacity: 1;
	visibility: visible;
}

.booking-side-panel-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 600px;
	height: 100%;
	background-color: var(--background-white);
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	z-index: 9999;
	overflow-y: auto;
}

.booking-side-panel-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid var(--border-color);
	background-color: var(--background-white);
	position: sticky;
	top: 0;
	z-index: 10;
}

.booking-side-panel-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
}

.booking-side-panel-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius);
	transition: all 0.2s ease;
}

.booking-side-panel-close:hover {
	background-color: var(--background-gray);
	color: var(--text-primary);
}

.booking-side-panel-body {
	flex: 1;
	padding: 1.5rem;
	overflow-y: auto;
}

.booking-panel-section {
	margin-bottom: 2rem;
}

.booking-panel-section:last-child {
	margin-bottom: 0;
}

.booking-panel-field {
	margin-bottom: 1.5rem;
}

.booking-panel-field:last-child {
	margin-bottom: 0;
}

.booking-panel-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.booking-panel-value {
	margin: 0;
	font-size: 1rem;
	color: var(--text-primary);
	line-height: 1.6;
	white-space: pre-wrap;
}

.booking-panel-alert {
	border-radius: var(--border-radius);
	padding: 1rem;
	margin-bottom: 1rem;
}

.booking-panel-alert p {
	margin: 0;
	line-height: 1.6;
}

/* Mobile Responsive for Side Panel */
@media (max-width: 768px) {
	.booking-side-panel {
		max-width: 100%;
	}
	
	.booking-side-panel-header {
		padding: 1rem;
	}
	
	.booking-side-panel-header h3 {
		font-size: 1.25rem;
	}
	
	.booking-side-panel-body {
		padding: 1rem;
	}
	
	#calendly-embed-container {
		min-height: 500px !important;
	}
	
	.calendly-inline-widget {
		min-width: 100% !important;
		height: 500px !important;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	/* Table view for tablets with horizontal scroll if needed */
	.booking-table-desktop .table-container {
		overflow-x: auto;
	}
	
	.booking-table-desktop .table {
		min-width: 800px;
	}
	
	.booking-actions {
		flex-wrap: wrap;
		gap: 0.375rem;
	}
	
	.booking-actions .btn {
		font-size: 0.8125rem;
		padding: 0.5rem 0.75rem;
	}
}

@media (min-width: 769px) {
	/* Hide mobile cards on desktop */
	.booking-cards-mobile {
		display: none;
	}
	
	/* Show desktop table on desktop */
	.booking-table-desktop {
		display: block;
	}
}

/* ============================================
   Booking Page Styles
   ============================================ */
.booking-page-container {
	padding: 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.booking-row {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

.booking-row-top {
	grid-template-columns: minmax(0, 1fr) 380px;
}

.booking-row-bottom {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.booking-divider {
	border: 0;
	border-top: 1px solid var(--border-color);
	margin: 2.5rem 0;
}

.booking-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 1024px) {
	.booking-row-top {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

@media (max-width: 768px) {
	.booking-page-container {
		padding: 1rem !important;
	}
	
	.booking-row,
	.booking-row-top,
	.booking-row-bottom {
		grid-template-columns: 1fr !important;
	}
	
	.booking-page-container .card-body {
		padding: 1.25rem !important;
	}
	
	.booking-form-grid {
		grid-template-columns: 1fr;
	}
	
	.booking-form-grid .form-group {
		margin-bottom: 1.5rem !important;
	}
}

@media (max-width: 480px) {
	.booking-page-container {
		padding: 0.75rem !important;
	}
	
	.booking-page-container .card-body {
		padding: 1rem !important;
	}
	
	.booking-page-container .card-title {
		font-size: 1.25rem !important;
	}
}

/* ============================================
   Booking Success Page Styles
   ============================================ */
.booking-success-container {
	padding: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.booking-success-header {
	text-align: center;
	margin-bottom: 3rem;
}

.booking-success-header-icon {
	width: 80px;
	height: 80px;
	background-color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.booking-success-header-icon i {
	font-size: 3rem;
	color: var(--background-white);
}

.booking-success-header h1 {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.booking-success-header p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

.booking-success-header .confirmation-number {
	font-size: 0.875rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.booking-success-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.booking-success-step-number {
	width: 2rem;
	height: 2rem;
	background-color: var(--primary-color);
	color: var(--background-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.booking-success-step-content {
	flex: 1;
}

.booking-success-step-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.booking-success-step-description {
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
}

.booking-success-footer-actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.booking-success-footer-actions .btn {
	flex: 1;
	min-width: 200px;
}

.booking-success-support {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.booking-success-support p {
	color: var(--text-secondary);
	font-size: 0.875rem;
	margin: 0;
}

.booking-success-support a {
	color: var(--primary-color);
	text-decoration: none;
}

@media (max-width: 768px) {
	.booking-success-container {
		padding: 1rem !important;
	}
	
	.booking-success-header {
		margin-bottom: 2rem !important;
	}
	
	.booking-success-header h1 {
		font-size: 2rem !important;
	}
	
	.booking-success-header-icon {
		width: 60px !important;
		height: 60px !important;
	}
	
	.booking-success-header-icon i {
		font-size: 2rem !important;
	}
	
	.booking-success-footer-actions {
		flex-direction: column;
	}
	
	.booking-success-footer-actions .btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.booking-success-container {
		padding: 0.75rem !important;
	}
	
	.booking-success-header h1 {
		font-size: 1.75rem !important;
	}
}

/* ============================================
   Toast Notification Styles
   ============================================ */
.toast-notification {
	position: fixed;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: var(--background-white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	z-index: 10000;
	transition: top 0.3s ease;
	min-width: 300px;
	max-width: 500px;
}

.toast-notification.active {
	top: 20px;
}

.toast-notification.success {
	border-left: 4px solid var(--success-color);
}

.toast-notification.error {
	border-left: 4px solid var(--error-color);
}

.toast-icon {
	font-size: 24px;
	flex-shrink: 0;
}

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

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

.toast-message {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
	flex: 1;
}

@media (max-width: 768px) {
	.toast-notification {
		min-width: 280px;
		max-width: 90%;
		padding: 12px 20px;
	}
	
	.toast-icon {
		font-size: 20px;
	}
	
	.toast-message {
		font-size: 13px;
	}
}

/* ============================================
   Star Rating Component Styles
   ============================================ */
.star-rating {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 0.5rem;
}

.star-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 2rem;
	color: var(--border-color);
	transition: color 0.2s ease, transform 0.1s ease;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.star-btn i {
	transition: color 0.2s ease;
}

.star-btn i.bi-star-fill {
	color: #FFD700;
}

.star-btn:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
	border-radius: 4px;
}

.star-btn:focus:not(:focus-visible) {
	outline: none;
}

/* Mobile responsive for star rating */
@media (max-width: 768px) {
	.star-btn {
		font-size: 1.75rem;
	}
	
	.star-rating {
		gap: 0.375rem;
	}
}

/* ============================================
   Expert Dashboard Responsive Styles
   ============================================ */
@media (max-width: 768px) {
	.dashboard-expert .dashboard-header {
		flex-direction: column;
		gap: 1rem;
	}
	
	.dashboard-expert .dashboard-header h1 {
		font-size: 1.75rem;
	}
	
	.dashboard-expert .profile-card {
		padding: 1.5rem !important;
	}
	
	.dashboard-expert .profile-card .d-flex {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.dashboard-expert .profile-card .profile-avatar {
		margin-bottom: 1rem;
	}
	
	.dashboard-expert .service-item,
	.dashboard-expert .order-item {
		padding: 0;
	}
	
	.dashboard-expert .card-footer .btn {
		width: 100%;
	}
	
	.dashboard-expert .card-header .d-flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
	
	.dashboard-expert .card-header .btn {
		width: 100%;
	}
	
	.dashboard-expert .card-header .d-flex.gap-2 {
		flex-direction: column;
		width: 100%;
	}
	
	.dashboard-expert .card-header .d-flex.gap-2 .btn {
		width: 100%;
	}
	
	.dashboard-expert .row .col-md-6 {
		margin-bottom: 1rem;
	}
	
	.dashboard-expert .row .col-md-8,
	.dashboard-expert .row .col-md-6 {
		margin-bottom: 1rem;
	}
	
	.dashboard-expert .d-flex.gap-2 {
		flex-wrap: wrap;
	}
	
	/* Keep service action icons horizontal on mobile */
	.dashboard-expert .service-item .d-flex.align-items-center.gap-2 {
		flex-direction: row !important;
		flex-wrap: nowrap;
	}
	
	.dashboard-expert .service-item .d-flex.justify-content-between.align-items-start {
		flex-direction: row !important;
		flex-wrap: wrap;
	}
	
	/* General gap-2 rule for other elements, but exclude service-item */
	.dashboard-expert .card-body > .d-flex.gap-2 {
		flex-direction: column;
	}
	
	.dashboard-expert .card-body > .d-flex.gap-2 .btn {
		width: 100%;
	}
	
	.dashboard-expert .card-body .d-flex.align-items-center.gap-2 {
		flex-wrap: wrap;
	}
	
	.dashboard-expert .card-body .d-flex.align-items-center.gap-2 input {
		min-width: 0;
		font-size: 0.8125rem;
	}
	
	.dashboard-expert .card-body .d-flex.justify-content-center.gap-2 {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.dashboard-expert .card-body .d-flex.justify-content-center.gap-2 .btn {
		flex: 0 0 auto;
	}
	
	.dashboard-expert .card-body .d-flex.justify-content-between {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.dashboard-expert .card-body .d-flex.justify-content-between.align-items-center {
		align-items: flex-start;
	}
	
	/* Keep service action icons horizontal on mobile */
	.dashboard-expert .service-item .d-flex.justify-content-between.align-items-start,
	.dashboard-expert .service-item .d-flex.justify-content-between.align-items-center {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.dashboard-expert .service-item .d-flex.align-items-center.gap-2 {
		flex-direction: row;
		flex-wrap: nowrap;
	}
}

/* ============================================
   Expert Public Homepage Styles
   ============================================ */
/* Hero Benefits */
.hero-benefits {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.hero-benefit-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.hero-benefit-item i {
	font-size: 1rem;
}

/* Hero Overlay Card Middle Position */
.hero-overlay-card-middle {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
}

/* Service Categories */
.service-categories-container {
	position: relative;
	margin-top: 2rem;
	overflow: hidden;
	width: 100%;
}

.service-categories-slider {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	transition: transform 0.4s ease;
	overflow: visible;
	width: 100%;
	will-change: transform;
}

.service-category-card {
	background-color: var(--background-white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
	width: calc((100% - 4rem) / 3);
	min-width: calc((100% - 4rem) / 3);
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-category-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.category-card-top-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}

.category-card-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--background-white);
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	margin-top: 1rem;
}

.category-card-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.category-card-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.category-card-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.category-services-count {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.category-price-range {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary-color);
}

.category-explore-link {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.2s ease;
}

.category-explore-link:hover {
	color: var(--primary-color);
}

.category-explore-link i {
	transition: transform 0.2s ease;
}

.category-explore-link:hover i {
	transform: translateX(4px);
}

.category-navigation {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.category-nav-btn {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background-color: var(--background-white);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 1.25rem;
}

.category-nav-btn:hover {
	background-color: var(--primary-color);
	color: var(--background-white);
	border-color: var(--primary-color);
}

.category-nav-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Testimonial Card */
.testimonial-card {
	background-color: var(--background-white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	padding: 3rem;
	max-width: 900px;
	margin: 0 auto;
}

.testimonial-rating {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
}

.testimonial-text {
	font-size: 1.125rem;
	color: var(--text-primary);
	line-height: 1.8;
	margin-bottom: 2rem;
	font-style: italic;
	text-align: center;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.testimonial-author-info {
	flex: 0 1 auto;
	text-align: center;
}

.testimonial-author-name {
	font-size: 1.125rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.testimonial-author-title {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

/* Impact Statistics */
.impact-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.impact-stat-item {
	padding: 2rem;
}

.impact-stat-value {
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.impact-stat-label {
	font-size: 1.125rem;
	color: var(--text-secondary);
	font-weight: 500;
}

/* Expert Homepage Responsive Styles */
@media (max-width: 1024px) {
	.service-category-card {
		min-width: calc(50% - 1rem);
	}
	
	.impact-stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-benefits {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.hero-overlay-card-middle,
	.hero-overlay-card-bottom,
	.hero-overlay-card-bottom-right,
	.hero-overlay-card-bottom-left {
		position: static;
		transform: none;
		margin-top: 1rem;
		width: 100%;
	}
	
	.hero-overlay-card-top {
		position: static;
		margin-bottom: 1rem;
		width: 100%;
		left: auto;
	}
	
	.service-categories-container {
		padding: 0;
	}
	
	.service-categories-slider {
		flex-direction: row;
		gap: 1.5rem;
		padding: 0;
	}
	
	.service-category-card {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		flex-shrink: 0;
	}
	
	.category-navigation {
		display: flex;
	}
	
	.testimonial-card {
		padding: 2rem 1.5rem;
	}
	
	.testimonial-author {
		flex-direction: column;
		text-align: center;
	}
	
	.impact-stats-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.impact-stat-value {
		font-size: 2.5rem;
	}
	
	.cta-benefits {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.cta-actions {
		flex-direction: column;
		align-items: stretch;
	}
	
	.cta-actions input {
		max-width: 100% !important;
	}
}

@media (max-width: 480px) {
	.testimonial-card {
		padding: 1.5rem 1rem;
	}
	
	.testimonial-text {
		font-size: 1rem;
	}
	
	.impact-stat-value {
		font-size: 2rem;
	}
	
	.service-category-card {
		padding: 1.5rem;
	}
	
	.category-card-icon {
		width: 3rem;
		height: 3rem;
		font-size: 1.5rem;
	}
}

/* ============================================
   Career Tools Dashboard
   ============================================ */

/* Header Section */
.career-tools-header {
	margin-bottom: 2rem;
}

.career-tools-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.career-tools-subtitle {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0;
}

/* Summary Statistics Cards */
.summary-stat-card {
	background-color: var(--background-gray);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	text-align: center;
	transition: box-shadow 0.2s ease;
}

.summary-stat-card:hover {
	box-shadow: var(--shadow);
}

.summary-stat-card-primary {
	background-color: rgba(58, 135, 255, 0.1);
}

.summary-stat-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	background-color: var(--primary-color);
	color: var(--background-white);
}

.summary-stat-icon-brown {
	background-color: #8B4513;
}

.summary-stat-icon-black {
	background-color: var(--text-primary);
}

.summary-stat-value {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.summary-stat-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

/* Tool Cards */
.tool-card {
	background-color: var(--background-white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: box-shadow 0.2s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.tool-card:hover {
	box-shadow: var(--shadow-lg);
}

.tool-card-header {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.tool-card-icon {
	width: 3rem;
	height: 3rem;
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.tool-card-icon-blue {
	background-color: rgba(58, 135, 255, 0.1);
	color: var(--primary-color);
}

.tool-card-icon-green {
	background-color: rgba(16, 185, 129, 0.1);
	color: #10B981;
}

.tool-card-icon-brown {
	background-color: rgba(139, 69, 19, 0.1);
	color: #8B4513;
}

.tool-card-icon-purple {
	background-color: rgba(147, 51, 234, 0.1);
	color: #9333EA;
}

.tool-card-icon-pink {
	background-color: rgba(236, 72, 153, 0.1);
	color: #EC4899;
}

.tool-card-icon-orange {
	background-color: rgba(249, 115, 22, 0.1);
	color: #F97316;
}

.tool-card-content {
	flex: 1;
}

.tool-card-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.tool-card-description {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
}

.tool-card-details {
	margin-bottom: 1rem;
	flex: 1;
}

.tool-card-detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.tool-card-detail-item-progress {
	flex-direction: column;
	align-items: flex-start;
}

.tool-card-detail-value {
	font-weight: 600;
}

.progress-bar-container {
	width: 100%;
	height: 8px;
	background-color: var(--border-color);
	border-radius: 4px;
	overflow: hidden;
	margin-top: 0.5rem;
}

.progress-bar-fill {
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 4px;
	transition: width 0.3s ease;
}

.tool-card-footer {
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.tool-card-coming-soon {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	margin-top: auto;
}

/* Call-to-Action Banner */
.cta-banner {
	background-color: rgba(58, 135, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-top: 2rem;
}

.cta-banner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.cta-banner-title {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--text-primary);
	margin: 0 0 0.5rem 0;
}

.cta-banner-description {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin: 0;
}

/* Responsive Design for Career Tools Dashboard */
@media (max-width: 768px) {
	.career-tools-title {
		font-size: 2rem;
	}
	
	.summary-stat-card {
		padding: 1.25rem;
	}
	
	.summary-stat-icon {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.25rem;
	}
	
	.summary-stat-value {
		font-size: 1.75rem;
	}
	
	.tool-card {
		padding: 1.25rem;
	}
	
	.tool-card-header {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.tool-card-icon {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.25rem;
	}
	
	.cta-banner-content {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.cta-banner-content .btn {
		width: 100%;
	}
}

