/* =========================================
   PROCESS SECTION
========================================= */

.rte-process-section{
  width:100%;
  padding:90px 20px;
  background:#FFFF;
  overflow:hidden;
}

.rte-process-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
}

/* LEFT SIDE */

.rte-process-left{
  background:#FFFF;
  border-radius:20px;
  padding:55px 45px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.rte-process-badge{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:600;
  color:#EA580C;
  margin-bottom:20px;
  font-family:'Montserrat',sans-serif;
}

.rte-process-badge .dot{
  width:12px;
  height:12px;
  background:#EA580C;
  border-radius:50%;
}

.rte-process-left h2{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  color:#0F172A;
  margin-bottom:40px;
  font-family:'Montserrat',sans-serif;
  text-transform:uppercase;
}

/* STEPS */

.rte-process-steps{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.rte-step{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 24px;
  border-radius:8px;
  transform:rotate(-2deg);
  transition:0.3s ease;
}

.rte-step:hover{
  transform:rotate(0deg) translateY(-4px);
}

.rte-step span{
  font-size:22px;
  font-weight:800;
  font-family:'Montserrat',sans-serif;
}

.rte-step h3{
  margin:0;
  font-size:18px;
  font-weight:700;
  font-family:'Montserrat',sans-serif;
  text-transform:uppercase;
}

/* STEP COLORS */

.step-dark{
  background:#0F172A;
  color:#fff;
  width:88%;
}

.step-orange{
  background:#EA580C;
  color:#fff;
  width:95%;
  margin-left:18px;
}

.step-light{
  background:#F1ECE7;
  color:#0F172A;
  width:90%;
}

.step-white{
  background:#fff;
  color:#0F172A;
  width:85%;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
  margin-left:10px;
}

/* RIGHT SIDE */

.rte-process-right{
  position:relative;
}

.rte-process-image{
  border-radius:20px;
  overflow:hidden;
  height:620px;
}

.rte-process-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.rte-process-counter{
  position:absolute;
  left:-30px;
  bottom:30px;
  background:#fff;
  padding:30px 28px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  min-width:180px;
}

.rte-process-counter h3{
  font-size:48px;
  margin:0;
  line-height:1;
  font-weight:800;
  color:#0F172A;
  font-family:'Montserrat',sans-serif;
}

.rte-process-counter h3 span{
  color:#EA580C;
}

.rte-process-counter p{
  margin-top:10px;
  color:#444;
  font-size:15px;
  font-family:'Montserrat',sans-serif;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

  .rte-process-container{
    grid-template-columns:1fr;
  }

  .rte-process-left h2{
    font-size:40px;
  }

  .rte-process-image{
    height:500px;
  }

  .rte-process-counter{
    left:20px;
    bottom:20px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .rte-process-section{
    padding:70px 15px;
  }

  .rte-process-left{
    padding:35px 22px;
  }

  .rte-process-left h2{
    font-size:32px;
  }

  .rte-step{
    padding:16px 18px;
    gap:12px;
  }

  .rte-step h3{
    font-size:14px;
    line-height:1.4;
  }

  .rte-step span{
    font-size:18px;
  }

  .step-dark,
  .step-orange,
  .step-light,
  .step-white{
    width:100%;
    margin-left:0;
  }

  .rte-process-image{
    height:380px;
  }

  .rte-process-counter{
    position:relative;
    left:0;
    bottom:0;
    margin-top:-60px;
    width:fit-content;
  }

  .rte-process-counter h3{
    font-size:38px;
  }

}