/* ═══════════════════════════════════════════════════════════
   CutLab 3D – components.css (page-specific & misc)
   ═══════════════════════════════════════════════════════════ */

/* ─── Inner page hero (subpages) ─── */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); text-transform: uppercase; }
.page-hero p  { color: var(--light-text); max-width: 560px; margin: 0.75rem auto 0; }
.page-hero .breadcrumb { justify-content: center; background: transparent; margin-bottom: 1rem; }
.page-hero .breadcrumb-item a { color: var(--orange); }
.page-hero .breadcrumb-item.active { color: #888; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #555; }

/* ─── Service detail page ─── */
.service-detail { padding: 5rem 0; }
.service-detail .icon-box {
  width: 56px; height: 56px;
  background: rgba(255,98,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange);
  margin-bottom: 1.2rem;
}
.service-detail h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: 1rem; }
.service-detail p { color: var(--light-text); line-height: 1.8; }

/* ─── Price card ─── */
.price-card {
  background: var(--dark3);
  border: 1px solid rgba(255,98,0,0.12);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
}
.price-card:hover { border-color: rgba(255,98,0,0.5); transform: translateY(-4px); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-tag { font-family: 'Barlow Condensed',sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--orange); }
.price-unit { font-size: 0.85rem; color: #888; }

/* ─── Team card ─── */
.team-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,98,0,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem; color: var(--orange);
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card p  { font-size: 0.85rem; color: #888; margin: 0; }

/* ─── Gallery page ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 3rem 0; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; cursor: pointer; }
.gallery-item canvas { display: block; width: 100%; height: 100%; transition: transform 0.4s ease; }
.gallery-item:hover canvas { transform: scale(1.08); }
.gallery-caption {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption h5 { font-family: 'Barlow Condensed',sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.2rem; color: #fff; }
.gallery-caption p  { font-size: 0.8rem; color: #ccc; margin: 0; }

/* ─── Contact page ─── */
.contact-info-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.contact-info-card .info-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-card .info-row:last-child { margin-bottom: 0; }
.info-icon { width: 42px; height: 42px; background: rgba(255,98,0,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #666; margin-bottom: 0.2rem; }
.info-value { font-size: 0.92rem; color: var(--light-text); }
.info-value a { color: var(--light-text); transition: color 0.2s; }
.info-value a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
