/* Premium Landing Page Styles */
:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --secondary: #0f172a;
  --accent: #3b82f6;
  --bg-light: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #94a3b8;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

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

/* Utilities */
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: var(--primary-dark);
  color: white;
}
.btn-outline {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  margin-left: 16px;
}
.btn-outline:hover {
  background: var(--text-dark);
  color: white;
}
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-top: 20px;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}
.mt-4 { margin-top: 24px; }

  /* Navbar Links */
  .nav-links {
    display: flex;
    gap: 30px;
  }
  .nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover {
    color: var(--primary);
  }
  .nav-links a.active {
    color: var(--primary);
    font-weight: 600;
  }
  .btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Hero Section */
.hero-section {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, 
    #f8fffe 0%,
    #f0fdf9 100%
  );
  position: relative;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--secondary);
}
.hero-text p {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.8;
}
.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  padding-top: 30px;
}
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.stat-label { font-size: 0.9rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {
  flex: 1;
  position: relative;
}
.abstract-shape {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
}
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.glass-card:hover { transform: rotate(0deg) scale(1.02); }
.card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.avatar { width: 50px; height: 50px; background: #ddd; border-radius: 50%; background-image: url('https://i.pravatar.cc/150?img=32'); background-size: cover; }
.name { font-weight: 700; color: var(--secondary); }
.status { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.chart-preview {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}
.bar {
  width: 15%;
  background: #e2e8f0;
  border-radius: 8px 8px 0 0;
  transition: height 1s ease;
}
.bar.active { background: var(--primary); box-shadow: 0 0 20px rgba(16, 185, 129, 0.4); }

/* Journey Timeline Section */
.journey-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  z-index: 1;
  margin-bottom: 100px; 
}

/* The central line */
/* The central line */
.timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #e2e8f0;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  z-index: 0;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

/* Left side items */
.timeline-item {
  left: 0;
  text-align: right;
}

/* Right side items */
.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* The icons */
.timeline-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  right: -25px;
  background-color: white;
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: 0 0 0 4px #f8fafc; /* fake spacing */
}

.timeline-item.right .timeline-icon {
  left: -25px;
}

/* Content box */
.timeline-content {
  padding: 30px;
  background-color: white;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    text-align: left;
  }
  
  .timeline-item.right {
    left: 0;
  }
  
  .timeline-icon {
    left: 6px;
    right: auto;
  }

  .timeline-item.right .timeline-icon {
    left: 6px;
  }
}

/* Radar Section */
.radar-section { padding: 100px 0; background: white; }
.radar-container {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
}
.radar-chart-wrapper {
  flex: 1;
  max-width: 500px;
  min-width: 300px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-text { flex: 1; }
.feature-list { list-style: none; padding: 0; margin-top: 30px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.feature-list i { 
  color: var(--primary); 
  font-size: 1.5rem;
  margin-top: 4px; /* Visual alignment with title */
}
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-content strong {
  color: var(--secondary);
  font-size: 1.15rem;
}
.feature-content span {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Business Section */
.business-section {
  padding: 100px 0;
  background: var(--secondary);
  color: white;
}
.light-text h2 { color: white; }
.light-text p { color: #94a3b8; }

/* Business Lab Header Sizing */
.business-section .section-header h2 {
  font-size: 2.5rem;
}

.business-section .section-header p {
  font-size: 1.2rem;
}

/* Business Features Layout */
.business-features {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.business-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.business-feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #94a3b8;
}

.feature-text strong {
  color: white;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-img {
  width: 100%;
  max-width: 500px;
  /* border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1); */
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: scale(1.02);
}

/* Solo Tools CTA */
.solo-tools-cta {
  margin-top: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solo-tools-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.cta-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Solo Tools Row - Centered */
.solo-tools-row {
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 80px 0;
}

.solo-tools-text {
  text-align: center;
  max-width: 700px;
}

.solo-tools-text .icon-box {
  margin: 0 auto 24px;
}

.solo-tools-text h3 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.solo-tools-text p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.btn-solo-tools {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: inline-block;
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-solo-tools:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.05);
  color: white;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

/* Responsive Business Lab */
@media (max-width: 768px) {
  .business-feature-row, 
  .business-feature-row.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .feature-text .icon-box {
    margin: 0 auto 24px;
  }
  
  .img-placeholder {
    height: 200px;
  }
}

/* New Search Section - Full Width */
.search-section-new {
  padding: 100px 0;
  background: #fafafa;
}

.search-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  text-align: center;
}

.search-subtitle {
  font-size: 1.3rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 50px;
  text-align: center;
}

.search-header {
  margin-bottom: 60px;
}

.search-bar-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  gap: 12px;
}

.search-bar:focus-within {
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.search-bar > i {
  color: var(--primary);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 22px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 12px 8px;
  min-width: 0;
  margin: 0 !important;
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.clear-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clear-btn:hover {
  background: #f1f5f9;
  color: var(--text-dark);
}

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.search-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.search-bar button {
 width: auto !important; 
}

/* Search Filters */
.search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label.price-label {
  justify-content: space-between;
}

.filter-group label i {
  color: var(--primary);
  font-size: 1rem;
}

.filter-group label .price-value {
  margin-left: auto;
  font-weight: 700;
  color: var(--primary);
}

/* Custom Select Styling */
.custom-select {
  position: relative;
}

.custom-select select {
  width: 100%;
  padding: 14px 40px 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--text-dark);
  font-weight: 500;
}

.custom-select select:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.custom-select select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.custom-select i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.custom-select select:focus + i {
  transform: translateY(-50%) rotate(180deg);
}

/* Price Slider - Simplified */
.price-slider {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, 
    var(--primary) 0%, 
    var(--primary) 50%, 
    #e2e8f0 50%, 
    #e2e8f0 100%
  );
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

input.price-slider {
  margin-top: 16px !important;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Mentors Container */
.mentors-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.mentor-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  justify-content: space-between;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

.mentor-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.mentor-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

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

.mentor-title {
  flex: 1;
}

.mentor-card h4 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.2;
}

.mentor-specialty {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-details {
  margin-bottom: 28px;
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.mentor-motto {
  font-style: italic;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.mentor-bio {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.mentor-tag {
  background: #f0fdf4;
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.2s ease;
}

.mentor-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.mentor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
  flex-direction: column;
}

.mentor-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
  letter-spacing: -0.5px;
}

.mentor-price span {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 2px;
}

.btn-mentor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  margin-top: 16px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-mentor:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Search Footer */
.search-footer {
  margin-top: 60px;
  text-align: center;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.ml-2 {
  margin-left: 8px;
}

/* Mentors Page Styles */
.mentors-page-header {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #f0fdf9 0%, #ffffff 100%);
  text-align: center;
}

.mentors-page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.mentors-page-header p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.mentors-page-search {
  padding-top: 20px;
  background: white;
}

.mentors-page-search .search-header {
  margin-bottom: 40px;
}

.mentors-page-search .search-title,
.mentors-page-search .search-subtitle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .search-filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    width: 100%;
  }
  
  .mentors-container {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: white;
  padding: 80px 0 30px;
  border-top: 1px solid #e2e8f0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 { color: var(--secondary); margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); max-width: 300px; }
.social-links { margin-top: 24px; display: flex; gap: 16px; }
.social-links a {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: all 0.3s;
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-links h4 { color: var(--secondary); margin-bottom: 24px; }
.footer-links a {
  display: block;
  color: var(--text-light);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .radar-container { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .search-inputs { flex-direction: column; }
  .input-group { width: 100%; }
  
  /* Mobile specific adjustments */
  .btn-outline {
    margin: 16px 0 0 0;
    margin-left: 0; /* Reset desktop margin */
    display: block; /* Ensure it takes full width or breaks line if needed */
    width: 100%;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  
  .radar-section {
    padding: 60px 20px;
  }
  .radar-text {
    padding: 0 10px;
  }
}

/* Mentors List View */
.mentors-container.list-view {
  grid-template-columns: 1fr;
  max-width: 1200px;
}

.mentors-container.list-view .mentor-card {
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 20px 32px;
  gap: 30px;
}

.mentors-container.list-view .mentor-header-content {
  margin-bottom: 0;
  width: 250px;
  flex-shrink: 0;
}

.mentors-container.list-view .mentor-details {
  margin-bottom: 0;
  border-left: 1px solid #f1f5f9;
  padding-left: 30px;
  padding-right: 30px;
  flex: 1;
}

.mentors-container.list-view .mentor-footer {
  flex-direction: column;
  border-top: none;
  border-left: 1px solid #f1f5f9;
  padding-top: 0;
  padding-left: 30px;
  margin-top: 0;
  justify-content: center;
  gap: 16px;
  width: 180px;
  flex-shrink: 0;
}

.mentors-container.list-view .mentor-bio {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

/* Responsive List View */
@media (max-width: 992px) {
  .mentors-container.list-view .mentor-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mentors-container.list-view .mentor-header-content,
  .mentors-container.list-view .mentor-footer {
    width: 100%;
    border-left: none;
    padding-left: 0;
  }
  
  .mentors-container.list-view .mentor-details {
    border-left: none;
    padding: 20px 0;
    width: 100%;
  }
  
  .mentors-container.list-view .mentor-footer {
    flex-direction: row;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    justify-content: space-between;
  }
}
