/* public/css/job-details.css */
:root {
  --jd-primary: #1D6362;
  --jd-secondary: #5BBB7B;
  --jd-bg: #f8fafc;
  --jd-text-dark: #1e293b;
  --jd-text-muted: #64748b;
  --jd-border: #e2e8f0;
  --jd-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --jd-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --jd-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.body_content {
  background-color: var(--jd-bg);
  min-height: 100vh;
}

/* Header Section */
.detail-header-premium {
  background: linear-gradient(135deg, var(--jd-primary) 0%, #174d4c 100%);
  padding: 60px 0 80px;
  border-radius: 0 0 40px 40px;
  color: white;
  margin-bottom: -40px;
  position: relative;
  overflow: hidden;
}

.detail-header-premium::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(91, 187, 123, 0.2), transparent 70%);
  pointer-events: none;
}

.detail-header-premium .text-muted {
  color: rgba(255,255,255,0.7) !important;
}

.detail-header-premium h1.dark-color {
  color: #ffffff !important;
  font-size: 2.5rem;
  line-height: 1.3;
}

/* Detail Tags */
.detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.detail-tag i {
  color: var(--jd-secondary);
}

/* Icon Boxes (Stats) */
.detail-icon-box {
  background: white;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--jd-shadow-sm);
  border: 1px solid var(--jd-border);
  transition: all 0.3s ease;
  height: 100%;
}

.detail-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--jd-shadow-md);
  border-color: var(--jd-secondary);
}

.detail-icon-box i {
  width: 50px;
  height: 50px;
  background: rgba(91, 187, 123, 0.1);
  color: var(--jd-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.detail-icon-box h5 {
  color: var(--jd-text-dark);
  font-size: 1.1rem;
}

.detail-icon-box p {
  font-size: 0.9rem;
}

/* Content Cards */
.detail-card-premium {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--jd-shadow-sm);
  border: 1px solid var(--jd-border);
  margin-bottom: 30px;
}

.detail-card-premium h4 {
  color: var(--jd-text-dark);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--jd-bg);
  padding-bottom: 15px;
}

.detail-card-premium .fz15 {
  color: var(--jd-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* Sidebar */
.detail-sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--jd-shadow-md);
  border: 1px solid var(--jd-border);
  position: sticky;
  top: 100px;
}

/* Price Display */
.price-display-premium {
  background: var(--jd-bg);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--jd-primary);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  border: 1px dashed #cbd5e1;
}

.price-display-premium small {
  font-size: 0.85rem;
  color: var(--jd-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Auth Button Primary */
.auth-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--jd-secondary);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 14px 0 rgba(91, 187, 123, 0.39);
}

.auth-btn-primary:hover {
  background: #4ca369;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 187, 123, 0.4);
}

/* Sidebar Category List */
.category-list .border-bottom {
  border-bottom: 1px solid var(--jd-border) !important;
}

.category-list span.fw600 {
  color: var(--jd-text-dark);
}

/* Social Icons */
.sidebar-social-icons {
  display: flex;
  gap: 12px;
}

.sidebar-social-icons ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
}

.sidebar-social-icons ul li {
  margin: 0;
}

.sidebar-social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--jd-bg);
  color: var(--jd-text-muted);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar-social-icons ul li a:hover {
  background: var(--jd-secondary);
  color: white;
  transform: translateY(-3px);
}
