#what-we-do {
  background: transparent;
}

#what-we-do h2 {
  color: #ffffff;
}

#what-we-do p {
  line-height: 1.7;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card h5 {
  margin-bottom: 12px;
  color: #ffffff;
}

.service-card p {
  color: #b5b5b5;
}
.portfolio-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.portfolio-link:hover .glass-card,
.portfolio-link:focus-visible .glass-card {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.portfolio-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.portfolio-link:hover .glass-card,
.portfolio-link:focus-visible .glass-card {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.portfolio-shot {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(15, 23, 42, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
  margin: 0;
}

.portfolio-meta p {
  line-height: 1.7;
}

.portfolio-shot img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  display: block;
}

.portfolio-shot figcaption {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: #f5f7ff;
  letter-spacing: 0.02em;
}

.portfolio-detail {
  display: none;
}

.portfolio-detail.is-active {
  display: block;
}

.portfolio-card .portfolio-media {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 16, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.portfolio-modal.is-open {
  display: flex;
}

.portfolio-modal__dialog {
  width: min(1200px, 96vw);
  height: min(900px, 90vh);
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.portfolio-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-modal__close {
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.portfolio-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  text-align: center;
}

.modal-open {
  overflow: hidden;
}

.admin-table {
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

.admin-table__head th {
  background: rgba(15, 23, 42, 0.5);
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 16px;
}

.admin-table td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.status-submitted {
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.35);
}

.status-in-progress {
  background: rgba(59, 130, 246, 0.16);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.35);
}

.status-completed {
  background: rgba(16, 185, 129, 0.16);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.35);
}

.status-rejected {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.35);
}

html[data-theme="light"] .admin-table__head th {
  background: rgba(15, 23, 42, 0.06);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .admin-table td {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .admin-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.03);
}

html[data-theme="light"] .admin-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.05);
}
