*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Plus Jakarta Sans',sans-serif;
}

.section-label{
  display:inline-block;

  font-size:15px;
  font-weight:800;

  letter-spacing:4px;

  color:#006b3f;

  text-transform:uppercase;

  margin-bottom:18px;
}

body{
  background:#f6f6f2;
  color:#111;
}

.container{
  width:90%;
  max-width:1350px;
  margin:auto;
}

.task{
  padding:120px 0;

  background:
  linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.9)),
  url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?q=80&w=1400&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.task-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  align-items:center;
  gap:50px;
}

.task-form button{
  transition:all .3s ease;
}

.task-form button:disabled{
  opacity:.8;
  cursor:not-allowed;
}

.task-form{
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:
  0 20px 60px rgba(0,0,0,0.08);
   box-shadow:
  0 25px 60px rgba(0,0,0,0.15);
}
.task-right{
  max-width:650px;
}

.task-right h2{
  font-size:5rem;
  font-weight:800;
  line-height:0.95;
  letter-spacing:-3px;
  margin:10px 0 24px;
}

.task-text{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
  line-height:1.8;
}

.task-services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.task-box{
  background:white;

  padding:20px 24px;

  border-radius:18px;

  font-weight:600;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.06);

  transition:0.3s;

  line-height:1.6;
}

.task-box:hover{
  transform:translateY(-6px);

  box-shadow:
  0 18px 40px rgba(13,91,56,0.14);
}

.task-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:40px;
}

.task-feature{
  background:white;
  padding:18px 22px;
  border-radius:18px;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.06);

  font-weight:600;

  transition:0.3s;
}

.task-feature:hover{
  transform:translateY(-6px);

  box-shadow:
  0 18px 40px rgba(13,91,56,0.12);
}

.task-process{
  margin-top:35px;

  display:flex;
  gap:18px;

  flex-wrap:wrap;

  font-weight:700;

  color:#0d5b38;
}

.task-form h2{
  margin-bottom:20px;
}

.task-form input,
.task-form textarea,
.task-form select{
  width:100%;
  padding:16px 18px;
  margin-bottom:18px;
  border:1px solid #d8d8d8;
  border-radius:18px;
  background:#fff;
  font-size:15px;
  font-weight:500;
  font-family:'Plus Jakarta Sans',sans-serif;
  color:#555;
  outline:none;
  transition:0.3s ease;
}

.success-popup{
  position:fixed;
  top:30px;
  right:30px;
  background:#0f6b3f;
  color:#fff;
  padding:18px 26px;
  border-radius:14px;
  font-weight:600;
  font-size:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);

  opacity:0;
  visibility:hidden;
  transform:translateY(-20px);

  transition:all .35s ease;

  z-index:9999;
}

.success-popup.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  background:linear-gradient(135deg,#f4d06f,#e0b94f);
  color:#0b2418;
  text-decoration:none;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-weight:700;
  transition:0.35s ease;
}

.btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 15px 35px rgba(224,185,79,0.28);
}

.task-form textarea{
  min-height:130px;
  resize:none;
}

.task-form select{
  height:54px;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  cursor:pointer;

  padding-right:50px;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2300663a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");

  background-repeat:no-repeat;
  background-position:right 18px center;
}

.task-form input:focus,
.task-form textarea:focus,
.task-form select:focus{
  border-color:#0d6b3f;

  box-shadow:
  0 0 0 4px rgba(13,107,63,0.08);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:1100px){

  .task-grid{
    grid-template-columns:1fr;
  }

  .task-right{
    max-width:100%;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .task{
    padding:80px 0;
  }

  .container{
    width:92%;
  }

  .task-grid{
    gap:50px;
  }

  .task-form{
    padding:28px;
  }

  .task-right h2{
    font-size:2.7rem;
    line-height:1.1;
  }

  .task-text{
    font-size:16px;
  }

  .task-services{
    grid-template-columns:1fr;
  }

  .task-box{
    padding:18px;
    font-size:15px;
  }

  .task-process{
    gap:12px;
    font-size:14px;
  }

  .btn{
    width:100%;
  }

}

/* ========================= */
/* SMALL PHONES */
/* ========================= */

@media(max-width:480px){

  .task-form{
    padding:22px;
    border-radius:18px;
  }

  .task-form h2{
    font-size:2rem;
  }

  .task-right h2{
    font-size:2.2rem;
  }

  .task-form input,
  .task-form textarea,
  .task-form select{
    font-size:14px;
    padding:15px 16px;
  }

  .task-form textarea{
    min-height:110px;
  }

  .btn{
    width:100%;
  }

}