/* ============================================================
   SERVICE PAGES CSS — FREELANCERS CONSULTING GROUP
   ============================================================ */

/* ─── SERVICE HERO ───────────────────────────────────────── */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.service-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.service-hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,134,11,0.07) 0%, transparent 70%);
}
.service-hero-content { position: relative; max-width: 780px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  color: #666;
}
.breadcrumb a { color: #888; transition: color 0.2s; }
.breadcrumb a:hover { color: #B8860B; }
.breadcrumb-current { color: #B8860B; }
.service-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-hero-icon svg { width: 48px; height: 48px; }
.service-hero h1 { margin: 12px 0 20px; }
.service-hero-desc {
  font-size: 1.05rem;
  color: #888;
  max-width: 640px;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ─── KEY POINTS ─────────────────────────────────────────── */
.service-key-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.key-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(184,134,11,0.04);
  border: 1px solid rgba(184,134,11,0.1);
  border-radius: 10px;
  transition: all 0.25s ease;
}
.key-point:hover { border-color: rgba(184,134,11,0.25); background: rgba(184,134,11,0.07); }
.key-icon {
  width: 24px;
  height: 24px;
  background: rgba(184,134,11,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #D4A017;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.key-point strong { display: block; font-size: 0.88rem; font-weight: 600; color: #F0EDE8; margin-bottom: 4px; }
.key-point p { font-size: 0.8rem; color: #777; margin: 0; }

/* ─── MISSIONS GRID ──────────────────────────────────────── */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card { position: relative; }
.mission-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,134,11,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.mission-card h3 { font-size: 1.05rem; color: #F0EDE8; margin-bottom: 10px; }
.mission-card > p { font-size: 0.85rem; color: #888; margin-bottom: 16px; line-height: 1.8; }
.mission-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mission-details li {
  font-size: 0.8rem;
  color: #777;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.mission-details li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #B8860B;
  font-size: 0.65rem;
  top: 2px;
}

/* ─── SERVICE INTRO ──────────────────────────────────────── */
.service-intro { background: rgba(20,18,14,0.4); }

/* ─── CTA SECTION ────────────────────────────────────────── */
.service-cta-section {
  padding: 80px 0;
  background: rgba(184,134,11,0.04);
  border-top: 1px solid rgba(184,134,11,0.1);
  border-bottom: 1px solid rgba(184,134,11,0.1);
}
.service-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--black-card);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 20px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.service-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8860B, #D4A017, #B8860B, transparent);
}
.cta-content { flex: 1; }
.cta-content h2 { font-size: 2rem; margin: 12px 0 16px; }
.cta-content p { font-size: 0.92rem; color: #888; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.cta-actions .btn { justify-content: center; }

/* ─── OTHER SERVICES ─────────────────────────────────────── */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.other-service-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.other-service-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.other-service-card h4 { font-size: 0.95rem; color: #F0EDE8; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.other-service-card p { font-size: 0.8rem; color: #777; margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cta-box { flex-direction: column; text-align: center; }
  .cta-content p { max-width: 100%; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; min-width: auto; }
}
@media (max-width: 768px) {
  .missions-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
  .service-cta-box { padding: 40px 24px; }
  .service-hero { padding-top: 100px; }
  .grid-2 { grid-template-columns: 1fr !important; }
}
