/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== HERO SECTION ===== */
.placements-hero {
  position: relative;
  min-height: 60vh;
  background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&h=1080&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.placements-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(232,64,42,0.50),
    rgba(167,0,0,0.65)
  );
}

.placements-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.placements-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.placements-hero p {
  font-size: 20px;
  opacity: 0.95;
}

/* ===== SECTIONS ===== */
.placement-overview-section {
  padding: 100px 0;
  background: white;
}

.placement-services-section {
  padding: 100px 0;
  background: #F7F6EC;
}

.placement-process-section {
  padding: 100px 0;
  background: white;
}

.placement-stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #E8402A, #A70000);
  color: white;
}

/* ===== LABELS ===== */
.section-label {
  display: inline-block;
  background: rgba(232,64,42,0.1);
  color: #E8402A;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(232,64,42,0.2);
}

.placement-content h2,
.placement-services-section h2,
.placement-process-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.section-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  max-width: 700px;
  margin: 15px auto 0;
}

/* ===== PLACEMENT IMAGE ===== */
.placement-image {
  position: relative;
}

.placement-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  width: 100%;
}

.placement-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid #E8402A;
}

.placement-badge i {
  font-size: 32px;
  color: #E8402A;
}

.placement-badge span {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.service-card > p {
  font-size: 15px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: #000000;
}

.service-card ul li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #E8402A;
  font-size: 12px;
}

/* ===== PROCESS STEPS ===== */
.process-step {
  background: #F7F6EC;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.process-step:hover {
  border-color: #E8402A;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232,64,42,0.15);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
  font-weight: 800;
  color: rgba(232,64,42,0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-icon i {
  font-size: 32px;
  color: #E8402A;
}

.process-step h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.process-step p {
  font-size: 14px;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

/* ===== STATS ===== */
.stat-box {
  padding: 20px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon i {
  font-size: 36px;
  color: white;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.stat-box p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ===== CTA SECTION ===== */
.placement-cta {
  padding: 100px 0;
  background: #000000;
  color: white;
}

.placement-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.placement-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.placement-cta .btn-dark-primary {
  background: #E8402A;
  color: white;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.placement-cta .btn-dark-primary:hover {
  background: #A70000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,64,42,0.4);
}

.placement-cta .btn-outline-light {
  padding: 16px 35px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.placement-cta .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .placements-hero h1 {
    font-size: 38px;
  }

  .placement-content h2,
  .placement-services-section h2,
  .placement-process-section h2,
  .placement-cta h2 {
    font-size: 32px;
  }

  .placement-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }

  .placement-overview-section,
  .placement-services-section,
  .placement-process-section,
  .placement-stats-section,
  .placement-cta {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .placements-hero h1 {
    font-size: 32px;
  }

  .placements-hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}
