/*=================================
        SECTION
        =================================*/

.contract-section {
  padding: 90px 0;
}

/*=================================
        HERO
        =================================*/

.contract-hero {
  background: linear-gradient(135deg, #0f172a, #111827);
  border-radius: 35px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}

.contract-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -140px;
  right: -120px;
}

.contract-hero h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contract-hero p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 17px;
  max-width: 760px;
  margin-bottom: 0;
}

/*=================================
        TIMELINE
        =================================*/

.timeline {
  position: relative;
  margin-top: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #dbe7f3;
}

/*=================================
        ITEM
        =================================*/

.timeline-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 45px;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #28abe3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(44, 167, 255, 0.25);
  z-index: 2;
}

/*=================================
        CARD
        =================================*/

.timeline-card {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  border: 1px solid #edf2f7;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);

  transition: 0.35s ease;
}

.timeline-card:hover {
  transform: translateY(-8px);

  border-color: #2ca7ff;

  box-shadow: 0 18px 45px rgba(44, 167, 255, 0.12);
}

.timeline-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
}

.timeline-card p {
  color: #64748b;
  line-height: 1.95;
  text-align: justify;
  margin-bottom: 18px;
  font-size: 15.5px;
}

/*=================================
        ALERT
        =================================*/

.alert-note {
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: #856404;
  border-radius: 18px;
  padding: 18px 20px;
  line-height: 1.8;
  margin-top: 25px;
}

/*=================================
        SIDEBAR
        =================================*/

.info-box {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  margin-bottom: 30px;

  border: 1px solid #edf2f7;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-box h4 {
  font-size: 25px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 25px;
}

.info-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.info-box ul li {
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.8;
}

/*=================================
        BUTTON
        =================================*/

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 30px;

  border-radius: 14px;

  background: #28abe3;

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s ease;
}

.btn-contact:hover {
  transform: translateY(-4px);

  color: #fff;

  box-shadow: 0 12px 25px rgba(44, 167, 255, 0.25);
}

/*=================================
        MOBILE
        =================================*/

@media (max-width: 768px) {
  .contract-section {
    padding: 70px 0;
  }

  .contract-hero {
    padding: 45px 30px;
    border-radius: 25px;
  }

  .contract-hero h2 {
    font-size: 36px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    padding-left: 75px;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .timeline-card {
    padding: 28px;
  }

  .timeline-card h3 {
    font-size: 25px;
  }
}
