/* assets/css/crc-guideline.css */

.crc-banner {
  padding: 165px 0 95px;
  background:
    linear-gradient(135deg, rgba(7, 26, 47, 0.94), rgba(15, 118, 110, 0.9)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.crc-banner::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 75px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.28);
  animation: crcFloat 6s infinite ease-in-out;
}

@keyframes crcFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

.crc-banner .container {
  position: relative;
  z-index: 2;
}

.crc-badge {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--icsis-accent);
  font-weight: 900;
  margin-bottom: 18px;
}

.crc-banner h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 14px;
}

.crc-banner p {
  font-size: 22px;
  max-width: 760px;
  color: #dbeafe;
}

.crc-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fbfd;
}

.crc-intro {
  max-width: 780px;
  margin: auto;
  color: #64748b;
  font-size: 17px;
}

.crc-step {
  background: #fff;
  border: 1px solid #e4eaf1;
  border-radius: 26px;
  padding: 28px;
  height: 100%;
  position: relative;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s ease;
  overflow: hidden;
}

.crc-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}

.crc-step span {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 54px;
  font-weight: 900;
  color: rgba(15, 118, 110, 0.08);
}

.crc-step i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--icsis-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 22px;
}

.crc-step h4 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.crc-step p {
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.crc-step.active {
  background: var(--icsis-gradient-dark);
}

.crc-step.active h4,
.crc-step.active p {
  color: #fff;
}

.crc-step.active i {
  background: var(--icsis-accent);
}

.crc-step.active span {
  color: rgba(255, 255, 255, 0.08);
}

.crc-card {
  background: #fff;
  border: 1px solid #e4eaf1;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.crc-card h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 24px;
}

.crc-card h3 i {
  color: var(--icsis-primary);
  margin-right: 8px;
}

.crc-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crc-checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #475569;
  font-weight: 600;
  line-height: 1.6;
}

.crc-checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--icsis-primary);
}

.instruction-list {
  display: grid;
  gap: 15px;
}

.instruction-list div {
  padding: 18px 20px;
  background: #f8fbfd;
  border-radius: 18px;
  border-left: 5px solid var(--icsis-primary);
  color: #475569;
  font-weight: 600;
}

.instruction-list strong {
  color: var(--icsis-dark);
}

.deadline-box {
  background: var(--icsis-gradient-dark);
  color: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(7, 26, 47, 0.22);
  text-align: center;
}

.deadline-box i {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: var(--icsis-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
}

.deadline-box h3 {
  font-weight: 900;
}

.deadline-box h2 {
  color: var(--icsis-accent);
  font-weight: 900;
  margin: 15px 0;
}

.deadline-box p {
  color: #dbeafe;
  font-weight: 600;
}

.download-box {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #e4eaf1;
}

.download-box h4 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 20px;
}

.download-box h4 i {
  color: var(--icsis-primary);
  margin-right: 8px;
}

.download-box a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbfd;
  color: var(--icsis-dark);
  font-weight: 800;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.download-box a:hover {
  background: var(--icsis-gradient);
  color: #fff;
  transform: translateX(5px);
}

.crc-final-note {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.09);
  border: 1px solid #e4eaf1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.crc-final-note h3 {
  color: var(--icsis-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.crc-final-note p {
  margin: 0;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .crc-banner {
    padding: 140px 0 75px;
    text-align: center;
  }

  .crc-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .crc-section {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .crc-banner {
    padding: 125px 0 60px;
  }

  .crc-banner h1 {
    font-size: 38px;
  }

  .crc-banner p {
    font-size: 18px;
  }

  .crc-section {
    padding: 55px 0;
  }

  .crc-step,
  .crc-card,
  .deadline-box,
  .download-box,
  .crc-final-note {
    padding: 24px;
  }

  .crc-final-note {
    text-align: center;
    justify-content: center;
  }
}