/* ========================================
   Hero Section - Side by Side
   ======================================== */

.hero-section-custom {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  padding: 30px 0 50px 0;
}

.photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8eef7 0%, #d4dff7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b7ee5;
  font-size: 13px;
  text-align: center;
  border: 3px solid #5b7ee5;
}

.hero-label {
  color: #5b7ee5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}

.hero-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px 0;
  color: var(--text-primary, #1a1a2e);
}

.hero-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 16px 0;
}

.hero-button {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid #5b7ee5;
  border-radius: 30px;
  color: #5b7ee5;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hero-button:hover {
  background: #5b7ee5;
  color: white;
}

/* ========================================
   Service Cards - 2x2 Grid
   ======================================== */

.services-grid-custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 650px;
  margin: 0 auto;
}

.service-card-custom {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
}

.service-card-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #5b7ee5;
}

.service-icon-custom {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5b7ee5;
  border-radius: 12px;
  font-size: 22px;
}

.service-card-custom h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text-primary, #1a1a2e);
}

.service-card-custom p {
  font-size: 13px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

/* ========================================
   About Section - Side by Side
   ======================================== */

.about-section-custom {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
}

.about-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text-primary, #1a1a2e);
}

.about-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 12px 0;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.highlight-icon {
  font-size: 20px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  flex-shrink: 0;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.highlight-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary, #1a1a2e);
}

.highlight-item span {
  font-size: 11px;
  color: #666;
}

/* ========================================
   Section Headings
   ======================================== */

.section-heading {
  text-align: center;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 1.5rem;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #5b7ee5;
  border-radius: 2px;
}

/* ========================================
   Navigation - Single left border only
   ======================================== */

.sidebar-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--text-secondary, #555);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}

/* Remove ALL pseudo-elements from wezen-improvements */
.sidebar-nav a::before,
.sidebar-nav a::after {
  display: none !important;
  content: none !important;
}

.sidebar-nav a:hover {
  color: #5b7ee5;
  background: rgba(91, 126, 229, 0.05);
}

.sidebar-nav .current-menu-item > a,
.sidebar-nav .current_page_item > a {
  color: #5b7ee5 !important;
  background: rgba(91, 126, 229, 0.08) !important;
  border-left-color: #5b7ee5 !important;
  font-weight: 600;
}

/* ========================================
   Dark Mode
   ======================================== */

[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .about-content h2,
[data-theme="dark"] .service-card-custom h3,
[data-theme="dark"] .highlight-item strong,
[data-theme="dark"] .section-heading h2 {
  color: #fff;
}

[data-theme="dark"] .hero-bio,
[data-theme="dark"] .about-content p,
[data-theme="dark"] .service-card-custom p,
[data-theme="dark"] .highlight-item span {
  color: #b8b8d1;
}

[data-theme="dark"] .service-card-custom,
[data-theme="dark"] .highlight-item {
  background: #252540;
  border-color: #3a3a5c;
}

[data-theme="dark"] .highlight-icon {
  background: #1a1a2e;
}

[data-theme="dark"] .about-section-custom {
  border-top-color: #3a3a5c;
}

[data-theme="dark"] .photo-placeholder {
  background: linear-gradient(135deg, #252540 0%, #1e3a5f 100%);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 700px) {
  .hero-section-custom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo {
    display: flex;
    justify-content: center;
  }

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

  .about-section-custom {
    grid-template-columns: 1fr;
  }

  .about-content {
    text-align: center;
  }
}
